Skip to content

Commit

Permalink
Issue #217: Fix SNAPSHOTs publish workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ALRubinger committed Mar 9, 2024
1 parent e20329d commit 1b916e1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/publish-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,16 @@ jobs:
run: |
if [ -n "${{ github.event.inputs.version }}" ]; then
mvn \
deploy
deploy \
-DskipTests=true \
--batch-mode \
--settings .maven_settings.xml \
-Dversion=${{ github.event.inputs.version }} \
-Dgpg.passphrase=${{ secrets.GPG_SECRET_PASSPHRASE }}
else
mvn \
deploy
deploy \
-DskipTests=true \
--batch-mode \
--settings .maven_settings.xml \
-Dgpg.passphrase=${{ secrets.GPG_SECRET_PASSPHRASE }}
Expand Down

0 comments on commit 1b916e1

Please sign in to comment.