Skip to content

Commit e66ef96

Browse files
fix: disambiguate ARM archive names in goreleaser config
linux_arm6 and linux_arm7 were producing the same archive filename. Append the ARM version suffix to distinguish them. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent a56849a commit e66ef96

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.goreleaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ archives:
3737
- goos: windows
3838
formats:
3939
- zip
40-
name_template: "{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}"
40+
name_template: "{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
4141

4242
checksum:
4343
name_template: "checksums.txt"

0 commit comments

Comments
 (0)