We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b420929 commit a78decdCopy full SHA for a78decd
1 file changed
.github/workflows/cd.yaml
@@ -51,11 +51,12 @@ jobs:
51
distribution: 'adopt'
52
53
- name: Import GPG key
54
- run: echo -n "$GPG_SIGNING_KEY" | base64 --decode | gpg --import
+ run: echo -n "$GPG_SIGNING_KEY" | base64 --decode | gpg --import --passphrase "$GPG_PASSPHRASE"
55
env:
56
# To generate a new GPG key run the following command in your local terminal:
57
# gpg --export-secret-keys -a "<key_id>" | base64
58
GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }}
59
+ GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
60
- name: Log GPG keys
61
run: gpg --list-secret-keys --keyid-format LONG
62
0 commit comments