mirror of
https://github.com/go-shiori/shiori.git
synced 2025-01-15 04:17:43 +08:00
fix: add version to goreleaser archive filename (#934)
* fix: add version to goreleaser archive filename * remove whitespace
This commit is contained in:
parent
2a231ecc37
commit
650f192176
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ archives:
|
|||
name_template: >-
|
||||
{{ .ProjectName }}_
|
||||
{{- if eq .Os "darwin" }}Darwin{{- else if eq .Os "linux" }}Linux{{- else if eq .Os "windows" }}Windows{{- else }}{{ .Os }}{{ end }}_
|
||||
{{- if eq .Arch "amd64" }}x86_64{{- else if eq .Arch "arm64" }}aarch64{{- else }}{{ .Arch }}{{ end }}
|
||||
{{- if eq .Arch "amd64" }}x86_64{{- else if eq .Arch "arm64" }}aarch64{{- else }}{{ .Arch }}{{ end }}_{{ .Version }}
|
||||
format_overrides:
|
||||
- goos: windows
|
||||
format: zip
|
||||
|
|
Loading…
Reference in a new issue