Skip to content

Commit

Permalink
fix: snap release job run condition (#333)
Browse files Browse the repository at this point in the history
  • Loading branch information
cjdcordeiro authored Nov 23, 2023
1 parent 4468986 commit 7f572ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/snap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ jobs:
release:
runs-on: ubuntu-latest
needs: [test]
if: github.event_name == 'push'
if: github.event_name == 'push' && needs.test.result == 'success' && always()
strategy:
fail-fast: false
matrix:
Expand Down

0 comments on commit 7f572ce

Please sign in to comment.