Skip to content

Commit

Permalink
fix: checksum_generation in goreleaser
Browse files Browse the repository at this point in the history
  • Loading branch information
matfire committed Jul 13, 2024
1 parent 99862a7 commit 344bed1
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,13 @@ archives:
- goos: windows
format: zip
checksum:
name_template: checksum.txt
name_template: >-
{{ .ProjectName }}_
{{- title .Os }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
{{- if .Arm }}v{{ .Arm }}{{ end }}_checksum.txt
split: true

changelog:
Expand Down

0 comments on commit 344bed1

Please sign in to comment.