Skip to content

Commit

Permalink
Build: maybe this fix will work (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
cbackas authored Jul 31, 2023
1 parent 3db7e2c commit 10dada5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 10dada5

Please sign in to comment.