Skip to content

Commit 211374e

Browse files
authored
Merge pull request #37 from platform9/fix/goreleaser-windows-arm
fix(release): skip unsupported windows/arm build target
2 parents 1ebf2dd + 89e2669 commit 211374e

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

.goreleaser.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ builds:
3333
ignore:
3434
- goos: darwin
3535
goarch: "386"
36+
# Go does not support 32-bit ARM on Windows (unsupported GOOS/GOARCH pair).
37+
- goos: windows
38+
goarch: arm
3639
binary: "{{ .ProjectName }}_v{{ .Version }}"
3740

3841
archives:

0 commit comments

Comments
 (0)