Skip to content

Commit aa0ab19

Browse files
authoredJul 25, 2023
Merge pull request #79 from NETWAYS/fix/goreleaser-config
Fix missing project name in goreleaser config
2 parents 9f52022 + ad17510 commit aa0ab19

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎.goreleaser.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,11 @@ release:
2424
archives:
2525
- format: binary
2626
name_template: >-
27-
{{- if eq .Arch "amd64" }}x86_64{{ end }}
27+
{{ .ProjectName }}_{{ .Tag }}_
2828
{{- if eq .Os "linux" }}Linux{{ end }}
2929
{{- if eq .Os "windows" }}Windows{{ end }}
3030
{{- if eq .Os "darwin" }}Darwin{{ end }}
31+
{{- if eq .Arch "amd64" }}_x86_64{{ end }}
3132
checksum:
3233
name_template: 'checksums.txt'
3334
snapshot:

0 commit comments

Comments
 (0)