Skip to content

Commit 190634b

Browse files
committed
fix: disable i386 arch from release builds
Signed-off-by: Christian Stewart <christian@aperture.us>
1 parent 9211192 commit 190634b

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,4 @@ __debug*
2929

3030
dist/
3131
/.tools/
32+
.env

.goreleaser.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ builds:
2121
- linux
2222
- windows
2323
- darwin
24+
goarch:
25+
- amd64
26+
- arm64
2427

2528
archives:
2629
- format: tar.gz
@@ -29,7 +32,6 @@ archives:
2932
{{ .ProjectName }}_
3033
{{- title .Os }}_
3134
{{- if eq .Arch "amd64" }}x86_64
32-
{{- else if eq .Arch "386" }}i386
3335
{{- else }}{{ .Arch }}{{ end }}
3436
{{- if .Arm }}v{{ .Arm }}{{ end }}
3537
# use zip for windows archives

0 commit comments

Comments
 (0)