Skip to content

Commit

Permalink
List gpg keys on deploy
Browse files Browse the repository at this point in the history
Signed-off-by: Manoel Campos <manoelcampos@gmail.com>
  • Loading branch information
manoelcampos committed Nov 24, 2022
1 parent 111b8d9 commit 5156b16
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ jobs:
cache: 'maven'
- id: install-secret-key
name: Install gpg secret key
run: cat <(echo -e "${{ secrets.OSSRH_GPG_SECRET_KEY }}") | gpg --batch --import
run: |
cat <(echo -e "${{ secrets.OSSRH_GPG_SECRET_KEY }}") | gpg --batch --import
gpg --list-keys
- name: Publish package
run: |
# Set some environment variables needed by Nexus Staging Maven plugin on JDK 17,
Expand Down

0 comments on commit 5156b16

Please sign in to comment.