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 8197314Copy full SHA for 8197314
.github/workflows/build-deploy.yml
@@ -82,10 +82,17 @@ 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 }}
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:
98
GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }}
0 commit comments