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 a8d6b34 commit f4a6753Copy full SHA for f4a6753
.github/workflows/deploy.yml
@@ -32,9 +32,12 @@ jobs:
32
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
33
34
35
- - name: Set Default GPG Key
36
- run: gpg --default-key ${{ secrets.GPG_KEY_ID }}
37
-
+ - name: Set Default GPG Key and Verify
+ run: |
+ echo "$GPG_PRIVATE_KEY" | gpg --batch --import
38
+ gpg --default-key ${{ secrets.GPG_KEY_ID }} --list-secret-keys --keyid-format LONG
39
+ env:
40
+ GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
41
- name: Set up Java
42
uses: actions/setup-java@v4
43
with:
0 commit comments