mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-28 07:36:44 +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 }}
|
||||
{{- else }}{{ .Version }}
|
||||
{{ end }}
|
||||
{{- if .Env.DIRTY_SUFFIX }}{{ .Env.DIRTY_SUFFIX }}{{ end }}_
|
||||
{{- with index .Env "DIRTY_SUFFIX" -}}
|
||||
{{ . }}
|
||||
{{- end -}}_
|
||||
{{- title .Os }}_
|
||||
{{- if eq .Arch "amd64" }}x86_64
|
||||
{{- else if eq .Arch "386" }}i386
|
||||
|
|
@ -58,7 +60,9 @@ checksum:
|
|||
{{- if .IsSnapshot }}{{ .ShortCommit }}
|
||||
{{- else }}{{ .Version }}
|
||||
{{- end }}
|
||||
{{- if .Env.DIRTY_SUFFIX }}{{ .Env.DIRTY_SUFFIX }}{{ end -}}
|
||||
{{- with index .Env "DIRTY_SUFFIX" -}}
|
||||
{{ . }}
|
||||
{{- end -}}
|
||||
_checksums.txt
|
||||
|
||||
changelog:
|
||||
|
|
|
|||
Loading…
Reference in a new issue