Skip to content

Commit 44ad70d

Browse files
committed
fix gpg signing
1 parent 6847ded commit 44ad70d

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
if: startsWith(github.ref, 'refs/tags/')
9797
uses: goreleaser/goreleaser-action@v3
9898
with:
99-
version: v0.162.0
99+
version: latest
100100
args: release --rm-dist
101101
env:
102102
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}
@@ -106,5 +106,5 @@ jobs:
106106
if: "!startsWith(github.ref, 'refs/tags/')"
107107
uses: goreleaser/goreleaser-action@v3
108108
with:
109-
version: v0.162.0
109+
version: latest
110110
args: build --snapshot

.goreleaser.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ builds:
2222
ignore:
2323
- goos: darwin
2424
goarch: "386"
25+
- goos: windows
26+
goarch: arm64
2527
binary: "{{ .ProjectName }}_{{ .Version }}"
2628
archives:
2729
- format: zip
@@ -40,6 +42,7 @@ signs:
4042
- "--detach-sign"
4143
- "${artifact}"
4244
stdin: '{{ .Env.GPG_PASSWORD }}'
45+
output: false
4346
release:
4447
changelog:
4548
skip: true

0 commit comments

Comments
 (0)