Skip to content

Commit

Permalink
fix: add version to goreleaser archive filename (#934)
Browse files Browse the repository at this point in the history
* fix: add version to goreleaser archive filename

* remove whitespace
  • Loading branch information
fmartingr committed Jun 8, 2024
1 parent 2a231ec commit 650f192
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ archives:
name_template: >-
{{ .ProjectName }}_
{{- if eq .Os "darwin" }}Darwin{{- else if eq .Os "linux" }}Linux{{- else if eq .Os "windows" }}Windows{{- else }}{{ .Os }}{{ end }}_
{{- if eq .Arch "amd64" }}x86_64{{- else if eq .Arch "arm64" }}aarch64{{- else }}{{ .Arch }}{{ end }}
{{- if eq .Arch "amd64" }}x86_64{{- else if eq .Arch "arm64" }}aarch64{{- else }}{{ .Arch }}{{ end }}_{{ .Version }}
format_overrides:
- goos: windows
format: zip
Expand Down

0 comments on commit 650f192

Please sign in to comment.