Skip to content

Commit

Permalink
Update GPG Configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
jared-daniels committed Nov 20, 2024
1 parent 62c90bc commit 8445777
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/beta-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,11 @@ jobs:
- name: Configure GPG
run: |
echo "${{ secrets.GPG_PRIVATE_KEY }}" | gpg --import
echo "${{ secrets.GPG_PUBLIC_KEY }}" | gpg --import
echo "$GPG_PRIVATE_KEY" | gpg --batch --yes --import
echo "$GPG_PUBLIC_KEY" | gpg --batch --yes --import
env:
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
GPG_PUBLIC_KEY: ${{ secrets.GPG_PUBLIC_KEY }}

- name: Publish to Maven Central Beta
run: |
Expand Down

0 comments on commit 8445777

Please sign in to comment.