Skip to content

Commit 915ee04

Browse files
committed
Skip windows/arm-32 bit builds in goreleaser (which was breaking) that was removed in go 1.26
1 parent be7b60a commit 915ee04

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.goreleaser-nightly.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ builds:
3232
goarm:
3333
- 6
3434
- 7
35+
ignore:
36+
- goos: windows
37+
goarch: arm
3538
ldflags:
3639
- -s -w -X "main.buildString=nightly ({{ .ShortCommit }} {{ .Date }}, {{ .Os }}/{{ .Arch }})" -X "main.versionString={{ .Env.LISTMONK_VERSION }}"
3740

.goreleaser.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ builds:
2525
goarm:
2626
- 6
2727
- 7
28+
ignore:
29+
- goos: windows
30+
goarch: arm
2831
ldflags:
2932
- -s -w -X "main.buildString={{ .Tag }} ({{ .ShortCommit }} {{ .Date }}, {{ .Os }}/{{ .Arch }})" -X "main.versionString={{ .Tag }}"
3033

0 commit comments

Comments
 (0)