Skip to content

Commit

Permalink
ci: Give just one lifecycle phase to maven (#572)
Browse files Browse the repository at this point in the history
  • Loading branch information
sverrehu authored Oct 17, 2023
1 parent bfcd4a2 commit b665808
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nightly-artifacts-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
git_user_signingkey: true
git_commit_gpgsign: true
- name: Publish package
run: mvn verify -Dgpg.passphrase="$GPG_PASSPHRASE" --batch-mode deploy
run: mvn -Dgpg.passphrase="$GPG_PASSPHRASE" --batch-mode deploy
env:
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-artifacts-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
server-username: MAVEN_USERNAME
server-password: MAVEN_PASSWORD
- name: Publish package
run: mvn verify -Dgpg.passphrase="$GPG_PASSPHRASE" --batch-mode deploy
run: mvn -Dgpg.passphrase="$GPG_PASSPHRASE" --batch-mode deploy
env:
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }}
Expand Down

0 comments on commit b665808

Please sign in to comment.