mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-14 16:03:45 +00:00
fix: goreleaser name templates
This commit is contained in:
parent
0d4c12fdfd
commit
7829203d82
1 changed files with 6 additions and 2 deletions
|
|
@ -28,7 +28,9 @@ archives:
|
||||||
{{- if .IsSnapshot }}{{ .ShortCommit }}
|
{{- if .IsSnapshot }}{{ .ShortCommit }}
|
||||||
{{- else }}{{ .Version }}
|
{{- else }}{{ .Version }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{- if .Env.DIRTY_SUFFIX }}{{ .Env.DIRTY_SUFFIX }}{{ end }}_
|
{{- with index .Env "DIRTY_SUFFIX" -}}
|
||||||
|
{{ . }}
|
||||||
|
{{- end -}}_
|
||||||
{{- title .Os }}_
|
{{- title .Os }}_
|
||||||
{{- if eq .Arch "amd64" }}x86_64
|
{{- if eq .Arch "amd64" }}x86_64
|
||||||
{{- else if eq .Arch "386" }}i386
|
{{- else if eq .Arch "386" }}i386
|
||||||
|
|
@ -58,7 +60,9 @@ checksum:
|
||||||
{{- if .IsSnapshot }}{{ .ShortCommit }}
|
{{- if .IsSnapshot }}{{ .ShortCommit }}
|
||||||
{{- else }}{{ .Version }}
|
{{- else }}{{ .Version }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if .Env.DIRTY_SUFFIX }}{{ .Env.DIRTY_SUFFIX }}{{ end -}}
|
{{- with index .Env "DIRTY_SUFFIX" -}}
|
||||||
|
{{ . }}
|
||||||
|
{{- end -}}
|
||||||
_checksums.txt
|
_checksums.txt
|
||||||
|
|
||||||
changelog:
|
changelog:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue