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 7a80121 commit 6a76d60Copy full SHA for 6a76d60
.github/workflows/release.yml
@@ -15,6 +15,13 @@ jobs:
15
steps:
16
- uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f
17
18
+ - uses: crazy-max/ghaction-import-gpg@v5
19
+ id: gpg
20
+ with:
21
+ gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
22
+ passphrase: ${{ secrets.GPG_PASSPHRASE }}
23
+
24
- uses: cli/gh-extension-precompile@640911b0a0f2adb89a07a8ba547053cbd4001e1e
25
with:
26
go_version: 1.20.x
27
+ gpg_fingerprint: ${{ steps.gpg.outputs.fingerprint }}
.goreleaser.yml
@@ -28,6 +28,9 @@ archives:
28
checksum:
29
name_template: "checksums.txt"
30
31
+signs:
32
+ - artifacts: checksum
33
34
snapshot:
35
name_template: "{{ incpatch .Version }}"
36
0 commit comments