Skip to content

Commit

Permalink
Fix goreleaser
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Sheiko committed Sep 23, 2023
1 parent 109aef7 commit 9b90f68
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,19 @@ builds:
- linux
- windows
- darwin
ignore:
- goos: darwin
goarch: '386'
- goos: windows
goarch: '386'
archives:
- replacements:
darwin: Darwin
linux: Linux
windows: Windows
386: i386
amd64: x86_64
- id: replacements
name_template: >-
{{- .ProjectName }}_
{{- title .Os }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
checksum:
name_template: 'checksums.txt'
changelog:
Expand Down

0 comments on commit 9b90f68

Please sign in to comment.