We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcd7b33 commit 20dbc89Copy full SHA for 20dbc89
1 file changed
.github/workflows/maven-release.yaml
@@ -57,10 +57,16 @@ jobs:
57
58
- name: Check 2 Verify GPG Key & Passphrase (Local Signing)
59
run: |
60
+ echo "=== DIAGNOSTIC : List of secrets keys imported ==="
61
+ gpg --list-secret-keys
62
+
63
+ echo "=== Maven verification ==="
64
mvn clean verify -B -ntp \
65
-DskipTests=true \
66
-Dmaven.javadoc.skip=true \
- -Dgpg.passphrase="${{ secrets.SONATYPE_GPG_PASSPHRASE }}"
67
+ -Dgpg.passphrase="$GPG_PASSPHRASE"
68
+ env:
69
+ GPG_PASSPHRASE: ${{ secrets.SONATYPE_GPG_PASSPHRASE }}
70
71
# - name: Run Maven Release
72
# run: |
0 commit comments