Skip to content

Commit e6acdcf

Browse files
committed
fix(release): drop bogus mips64 hardfloat suffix from archive names
The archive name template hardcoded mips64_hardfloat / mips64le_hardfloat suffixes even though gomips is set to softfloat, producing files named *_hardfloat.tar.gz that actually contain softfloat builds. Drop the suffix entirely and let the default {{ .Arch }} branch handle them — keeping a single softfloat build per mips arch and naming it accurately.
1 parent 431cc21 commit e6acdcf

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

.goreleaser.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,6 @@ archives:
6363
{{- .Os }}_
6464
{{- if eq .Arch "386" }}i386
6565
{{- else if eq .Arch "amd64" }}x86_64
66-
{{- else if eq .Arch "mips64" }}mips64_hardfloat
67-
{{- else if eq .Arch "mips64le" }}mips64le_hardfloat
6866
{{- else }}{{ .Arch }}{{ end -}}
6967
formats: ['tar.gz']
7068
# Explicitly list builds to include (optional but good for clarity)

0 commit comments

Comments
 (0)