Skip to content

Commit 8977cc6

Browse files
committed
fix(goreleaser): disable windows 32bit builds
They're not compatible with Tailscale.
1 parent 92906fd commit 8977cc6

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
dist

.goreleaser.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ builds:
2020
ignore:
2121
- goos: darwin
2222
goarch: "386"
23+
- goos: windows
24+
goarch: "arm"
2325
binary: "{{ .ProjectName }}_v{{ .Version }}"
2426
archives:
2527
- id: "zip"

0 commit comments

Comments
 (0)