We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a636772 commit 740bfcaCopy full SHA for 740bfca
.github/workflows/deploy.yml
@@ -29,7 +29,7 @@ jobs:
29
30
- name: Import GPG key
31
run: |
32
- echo "${{ secrets.MVN_GPG_PRIVATE_KEY }}" | gpg --import --armor --batch --no-tty
+ echo "${{ secrets.GPG_PRIVATE_KEY }}" | gpg --import --armor --batch --no-tty
33
34
- name: Setup Maven settings
35
@@ -51,7 +51,5 @@ jobs:
51
52
- name: Deploy to Sonatype Central
53
54
- ./mvnw clean deploy --batch-mode -X -Prelease \
55
- -Dgpg.keyname=${{ secrets.MVN_GPG_KEY_ID }} \
56
- -Dgpg.passphrase="" \
57
- -Dgpg.pinentry-mode=loopback
+ ./mvnw clean deploy --batch-mode -Prelease \
+ -Dgpg.keyname=${{ secrets.GPG_KEY_ID }}
0 commit comments