We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1289a0c commit dc350eeCopy full SHA for dc350ee
.github/workflows/generate-index.yml
@@ -63,8 +63,8 @@ jobs:
63
# https://github.com/keybase/keybase-issues/issues/2798
64
- name: Import GPG key
65
run: |
66
- echo "${{ secrets.GPG_PRIVATE_KEY }}" | base64 -di > private.key
67
- gpg --batch --import --passphrase "${{ secrets.PASSPHRASE }}" private.key
+ echo "${{ secrets.GPG_PRIVATE_KEY }}" | base64 -di > /tmp/private.key
+ gpg --batch --import --passphrase "${{ secrets.PASSPHRASE }}" /tmp/private.key
68
echo "GPG_TTY=$(tty)" >> $GITHUB_ENV
69
70
# disable gpg pass prompt
0 commit comments