Skip to content

Commit

Permalink
ci: fix goreleaser yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
justinfx committed Apr 14, 2024
1 parent be525b3 commit 67c66ce
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ builds:
- linux
ignore:
- goos: darwin
goarch: 386
goarch: "386"

- id: seqinfo
main: ./cmd/seqinfo/
Expand All @@ -29,16 +29,19 @@ builds:
- linux
ignore:
- goos: darwin
goarch: 386
goarch: "386"


archives:
- id: default
wrap_in_directory: true
replacements:
386: 32-bit
amd64: 64-bit
darwin: osx
name_template: >-
{{ .ProjectName }}_
{{- title .Os }}_
{{- if eq .Arch "amd64" }}64-bit
{{- else if eq .Arch "386" }}32-bit
{{- else if eq .Arch "darwin" }}osx
{{- else }}{{ .Arch }}{{ end }}
format_overrides:
- goos: windows
format: zip
Expand Down

0 comments on commit 67c66ce

Please sign in to comment.