From 10dada52d0aae8cc922541f3e29a95887ecdfd50 Mon Sep 17 00:00:00 2001 From: Zac Date: Sun, 30 Jul 2023 19:04:29 -0500 Subject: [PATCH] Build: maybe this fix will work (#6) --- .github/workflows/push.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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