diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index ac7b5a8..2e67234 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -9,7 +9,7 @@ on: jobs: release: runs-on: ubuntu-latest - if: startsWith(github.ref, 'ref/heads/') + if: ${{ startsWith(github.ref, 'ref/heads/') }} steps: - name: Checkout uses: actions/checkout@v3 @@ -29,7 +29,7 @@ jobs: run: npx semantic-release notify: runs-on: ubuntu-latest - if: startsWith(github.ref, 'refs/tags/') + if: ${{ startsWith(github.ref, 'refs/tags/') }} steps: - name: Check out code uses: actions/checkout@v2