Skip to content

Commit 56c3399

Browse files
committed
ci: change to key id
1 parent d8d9d7d commit 56c3399

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,4 @@ jobs:
4646
GITHUB_TOKEN: ${{ secrets.PAT }}
4747
FURY_TOKEN: ${{ secrets.FURY_TOKEN }}
4848
BLUESKY_APP_PASSWORD: ${{ secrets.BLUESKY_APP_PASSWORD }}
49-
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}
49+
GPG_KEYID: ${{ steps.import_gpg.outputs.keyid }}

.goreleaser.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ binary_signs:
8181
- args:
8282
[
8383
"-u",
84-
"{{ .Env.GPG_FINGERPRINT }}",
84+
"{{ .Env.GPG_KEYID }}",
8585
"--output",
8686
"${signature}",
8787
"--detach-sign",
@@ -94,7 +94,7 @@ signs:
9494
[
9595
"--batch",
9696
"-u",
97-
"{{ .Env.GPG_FINGERPRINT }}",
97+
"{{ .Env.GPG_KEYID }}",
9898
"--output",
9999
"${signature}",
100100
"--detach-sign",

Taskfile.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,7 @@ tasks:
1515
run:
1616
desc: Run application
1717
cmd: go run main.go {{ .CLI_ARGS }}
18+
19+
release:
20+
desc: Run GoReleaser
21+
cmd: goreleaser release --snapshot --clean

0 commit comments

Comments
 (0)