Skip to content

Commit 8197314

Browse files
committed
Massage deploy script
1 parent 69a01f4 commit 8197314

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/build-deploy.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,10 +82,17 @@ jobs:
8282
path: |
8383
target/*.jar
8484
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 }}
8591
- if: ${{ startsWith(github.ref, 'refs/tags/') }}
8692
name: Deploy to Maven Central
8793
run: |
8894
echo -n "$GPG_SIGNING_KEY" | base64 --decode | gpg --import
95+
gpg --list-keys
8996
python3 script/release.py --only java --ref ${{ github.ref }}
9097
env:
9198
GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }}

0 commit comments

Comments
 (0)