We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b816a77 commit 7410fe4Copy full SHA for 7410fe4
1 file changed
.github/workflows/CD.yml
@@ -29,11 +29,12 @@ jobs:
29
server-username: ${{ secrets.OSSRH_USERNAME }} # env variable for username in deploy
30
server-password: ${{ secrets.OSSRH_TOKEN }} # env variable for token in deploy
31
gpg-private-key: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }} # Value of the GPG private key to import
32
- gpg-passphrase: ${{ secrets.MAVEN_GPG_PASSPHRASE }} # env variable for GPG private key passphrase
+ gpg-passphrase: MAVEN_GPG_PASSPHRASE # env variable for GPG private key passphrase
33
34
- name: Publish package to Maven Central
35
run: |
36
mvn -X --batch-mode deploy -Dmaven.test.skip=true
37
env:
38
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
39
MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }}
40
+ MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }}
0 commit comments