We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 342e207 commit a1a4c67Copy full SHA for a1a4c67
.github/workflows/npm-publish.yml
@@ -21,6 +21,10 @@ jobs:
21
env:
22
GPG_PRIVATE_KEY: ${{ secrets.PRIVATE_GPG_KEY }}
23
24
+ - name: Verify GPG Key Import
25
+ run: |
26
+ gpg --list-secret-keys --keyid-format=long
27
+
28
- name: Configure GPG for Non-Interactive Signing
29
run: |
30
echo "pinentry-mode loopback" >> ~/.gnupg/gpg.conf
@@ -40,6 +44,11 @@ jobs:
40
44
echo "export GPG_TTY=$(tty)" >> ~/.bashrc
41
45
source ~/.bashrc
42
46
47
+ - name: Restart GPG Agent
48
49
+ killall gpg-agent
50
+ gpg-agent --daemon
51
43
52
- name: Configure Git for GPG Signing
53
54
git config --global user.name "Irfan Shadik Rishad"
0 commit comments