Skip to content

Commit 84a6cae

Browse files
committed
fix(build): Added GPG signing
1 parent c6731e8 commit 84a6cae

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/release.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,14 @@ jobs:
1919
uses: actions/checkout@v3
2020
with:
2121
fetch-depth: 0
22+
- name: Import GPG key
23+
uses: crazy-max/ghaction-import-gpg@v5
24+
with:
25+
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
26+
passphrase: ${{ secrets.GPG_PASSPHRASE }}
27+
git_config_global: true
28+
git_user_signingkey: true
29+
git_commit_gpgsign: true
2230
- name: Setup Node.js
2331
uses: actions/setup-node@v3
2432
with:

0 commit comments

Comments
 (0)