Skip to content

Commit

Permalink
19 bug automatic releases dont work properly (#26)
Browse files Browse the repository at this point in the history
* feat: implement separate job for test and build release only if test pass

* chore: remove old release builder as is not necessary

* fix: wrong path reference on release job
  • Loading branch information
cbatista8a authored Jul 4, 2024
1 parent 63b63d9 commit 7cefa11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/semver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
# run this job only if the tests pass

release:
if: ${{ job.tests.outcome == 'success' }}
if: ${{ jobs.tests.outcome == 'success' }}
name: Release
runs-on: ubuntu-latest
permissions:
Expand Down

0 comments on commit 7cefa11

Please sign in to comment.