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 69a01f4 commit 151947dCopy full SHA for 151947d
1 file changed
.github/workflows/build-deploy.yml
@@ -82,12 +82,19 @@ jobs:
82
path: |
83
target/*.jar
84
target/maven/META-INF/maven/io.github.humbleui/jwm/pom.xml
85
+ - name: Print keys
86
+ run: |
87
+ echo -n "$GPG_SIGNING_KEY" | base64 --decode | gpg --import
88
+ gpg --list-keys
89
+ env:
90
+ GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY_2 }}
91
- if: ${{ startsWith(github.ref, 'refs/tags/') }}
92
name: Deploy to Maven Central
93
run: |
94
echo -n "$GPG_SIGNING_KEY" | base64 --decode | gpg --import
95
96
python3 script/release.py --only java --ref ${{ github.ref }}
97
env:
- GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }}
98
99
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }}
100
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}
0 commit comments