Skip to content

Commit

Permalink
chore: fix releaser
Browse files Browse the repository at this point in the history
  • Loading branch information
ldez committed May 14, 2022
1 parent 7c56b62 commit 8421181
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ builds:
- openbsd
goarch:
- amd64
- 386
- '386'
- arm
- arm64
goarm:
- 7
- '7'

ignore:
- goos: darwin
goarch: 386
goarch: '386'
- goos: openbsd
goarch: arm

Expand All @@ -35,11 +35,12 @@ changelog:
- '^test:'
- '^tests:'

archive:
name_template: '{{ .ProjectName }}_v{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ if .Arm}}v{{ .Arm }}{{ end }}'
format: tar.gz
format_overrides:
- goos: windows
format: zip
files:
- LICENSE
archives:
- id: aloba
name_template: '{{ .ProjectName }}_v{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}{{ if .Mips }}_{{ .Mips }}{{ end }}'
format: tar.gz
format_overrides:
- goos: windows
format: zip
files:
- LICENSE

0 comments on commit 8421181

Please sign in to comment.