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 2c1ab6e commit 73a1c3aCopy full SHA for 73a1c3a
.github/workflows/deploy.yml
@@ -44,6 +44,13 @@ jobs:
44
- name: Set GPG_TTY
45
run: echo "GPG_TTY=$(tty)" >> $GITHUB_ENV
46
47
+ - name: Debug GPG Key Import
48
+ run: |
49
+ echo "$GPG_PRIVATE_KEY" | gpg --batch --import
50
+ gpg --list-secret-keys --keyid-format LONG || echo "No secret keys found"
51
+ env:
52
+ GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
53
+
54
- name: Set up Java
55
uses: actions/setup-java@v4
56
with:
0 commit comments