Skip to content

Commit

Permalink
fix: disable i386 arch from release builds
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Stewart <[email protected]>
  • Loading branch information
paralin committed Oct 30, 2024
1 parent 9211192 commit 190634b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ __debug*

dist/
/.tools/
.env
4 changes: 3 additions & 1 deletion .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ builds:
- linux
- windows
- darwin
goarch:
- amd64
- arm64

archives:
- format: tar.gz
Expand All @@ -29,7 +32,6 @@ archives:
{{ .ProjectName }}_
{{- title .Os }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
{{- if .Arm }}v{{ .Arm }}{{ end }}
# use zip for windows archives
Expand Down

0 comments on commit 190634b

Please sign in to comment.