1
1
mirror of https://github.com/wader/fq.git synced 2024-08-16 15:30:36 +03:00

goreleaser: Use name_template instead of deprecated archive replacements

Also some cleanup

https://goreleaser.com/deprecations/#archivesreplacements
This commit is contained in:
Mattias Wadman 2022-12-31 11:03:58 +01:00
parent 63b5828a8d
commit 6e17de36ff

View File

@ -1,3 +1,5 @@
# to test
# docker run -ti -v "$PWD:$PWD" -w "$PWD" goreleaser/goreleaser:latest release --snapshot --rm-dist
project_name: fq
before:
@ -30,17 +32,22 @@ checksum:
archives:
- files:
# skip all other files
- none*
rlcp: true
format_overrides:
- goos: windows
format: zip
- goos: darwin
format: zip
replacements:
darwin: macos
snapshot:
name_template: "{{.Tag}}-next"
# fq_0.2.0_linux_amd64.tar.gz
# fq_0.2.0_macos_arm64.zip
name_template: >-
{{ .ProjectName }}_
{{- .Version }}_
{{- if eq .Os "darwin" }}macos_
{{- else }}{{ .Os }}_{{ end }}
{{- .Arch }}
changelog:
sort: asc