Skip to content

Commit

Permalink
Fix maven deploy step being skipped if preparation is skipped (elasti…
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasKunz authored and schikin committed Oct 11, 2023
1 parent 51e4f74 commit 2059d74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:

maven_central_deploy:
name: "Deploy to Maven Central (Buildkite)"
if: ${{ ! inputs.skip_maven_deploy }}
if: ${{ ! inputs.skip_maven_deploy && ( inputs.skip_preparation || success() ) }}
runs-on: ubuntu-latest
needs:
- prepare_release
Expand Down

0 comments on commit 2059d74

Please sign in to comment.