We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc0ee13 commit e29e36fCopy full SHA for e29e36f
.github/workflows/Deploy.yml
@@ -27,12 +27,13 @@ jobs:
27
server-id: ossrh
28
server-username: MAVEN_USERNAME
29
server-password: MAVEN_PASSWORD
30
+ gpg-passphrase: MAVEN_GPG_PASSPHRASE
31
32
- name: Set project version
33
run: mvn versions:set -DnewVersion=${{ env.VERSION }}
34
35
- name: Install GPG secret key
- run: echo "${{ secrets.OSSRH_GPG_SECRET_KEY }}" | gpg --batch --passphrase "${{ secrets.OSSRH_GPG_PASSPHRASE }}" --import
36
+ run: echo "${{ secrets.OSSRH_GPG_SECRET_KEY }}" | gpg --batch --import
37
38
- name: Check Imported GPG Keys
39
run: gpg --list-secret-keys --keyid-format LONG
0 commit comments