Skip to content

Commit dc350ee

Browse files
authored
place the private key in tmp (#89)
1 parent 1289a0c commit dc350ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/generate-index.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ jobs:
6363
# https://github.com/keybase/keybase-issues/issues/2798
6464
- name: Import GPG key
6565
run: |
66-
echo "${{ secrets.GPG_PRIVATE_KEY }}" | base64 -di > private.key
67-
gpg --batch --import --passphrase "${{ secrets.PASSPHRASE }}" private.key
66+
echo "${{ secrets.GPG_PRIVATE_KEY }}" | base64 -di > /tmp/private.key
67+
gpg --batch --import --passphrase "${{ secrets.PASSPHRASE }}" /tmp/private.key
6868
echo "GPG_TTY=$(tty)" >> $GITHUB_ENV
6969
7070
# disable gpg pass prompt

0 commit comments

Comments
 (0)