We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2a9f79 commit f1b4412Copy full SHA for f1b4412
.github/workflows/release.yml
@@ -68,14 +68,17 @@ jobs:
68
done
69
70
- name: Create checksums
71
- run: shasum -a 256 *-${{ github.ref_name }}_*_* >| checksums.txt
+ run: |
72
+ shasum -a 256 *-${{ github.ref_name }}_*_* >| checksums.txt
73
+ file *-${{ github.ref_name }}_*_* checksums.txt
74
75
- name: Sign checksums
76
run: |
- gpg --batch --yes --detach-sign --armor \
77
+ GPG_TTY=$(tty) gpg -vvv --batch --yes --detach-sign --armor \
78
--local-user "${{ secrets.GPG_FINGERPRINT }}" \
79
+ --output checksums.txt.sig \
80
--passphrase "${{ secrets.GPG_PASSPHRASE }}" \
- --output checksums.txt.sig checksums.txt
81
+ --pinentry-mode loopback checksums.txt
82
83
- name: Create release
84
env:
0 commit comments