Skip to content

Commit

Permalink
Merge pull request #79 from NETWAYS/fix/goreleaser-config
Browse files Browse the repository at this point in the history
Fix missing project name in goreleaser config
  • Loading branch information
martialblog authored Jul 25, 2023
2 parents 9f52022 + ad17510 commit aa0ab19
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,11 @@ release:
archives:
- format: binary
name_template: >-
{{- if eq .Arch "amd64" }}x86_64{{ end }}
{{ .ProjectName }}_{{ .Tag }}_
{{- if eq .Os "linux" }}Linux{{ end }}
{{- if eq .Os "windows" }}Windows{{ end }}
{{- if eq .Os "darwin" }}Darwin{{ end }}
{{- if eq .Arch "amd64" }}_x86_64{{ end }}
checksum:
name_template: 'checksums.txt'
snapshot:
Expand Down

0 comments on commit aa0ab19

Please sign in to comment.