Skip to content

Commit

Permalink
make release steps dependent on previous steps
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewowen committed Feb 8, 2024
1 parent 0fa1ef5 commit d06e113
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/mc-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
-Porg.gradle.parallel=false \
-Porg.gradle.daemon=false \
--no-daemon
if: steps.extract_branch.outputs.branch == 'tags/v*.*.*'
if: ${{ success() }} && steps.extract_branch.outputs.branch == 'tags/v*.*.*'



Expand All @@ -62,5 +62,5 @@ jobs:
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
prerelease: false
if: steps.extract_branch.outputs.branch == 'tags/v*.*.*'
if: ${{ success() }} && steps.extract_branch.outputs.branch == 'tags/v*.*.*'

0 comments on commit d06e113

Please sign in to comment.