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 3a2d7e9 commit fd488c8Copy full SHA for fd488c8
.github/workflows/maven-central.yml
@@ -25,6 +25,12 @@ jobs:
25
passphrase: ${{ secrets.GPG_PASSPHRASE }}
26
git_user_signingkey: true
27
28
+ - name: List GPG keys
29
+ run: |
30
+ echo "Listing GPG keys..."
31
+ gpg --list-secret-keys --keyid-format LONG
32
+ gpg --list-keys --keyid-format LONG
33
+
34
- name: Build and Publish
35
env:
36
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME_TOKEN }}
@@ -38,6 +44,7 @@ jobs:
38
44
-Dgpg.passphrase=${{ secrets.GPG_PASSPHRASE }} \
39
45
-Dgpg.executable=gpg \
40
46
-Dgpg.keyname=${{ secrets.GPG_KEYNAME }} \
47
+ -Dgpg.useagent=false \
41
48
-Dmaven.test.failure.ignore=false
42
49
43
50
echo "Checking deployment status..."
0 commit comments