mirror of
https://github.com/ergochat/ergo.git
synced 2024-11-14 16:09:32 +01:00
update to goreleaser v2 (#2169)
* update goreleaser config: * --rm-dist is replaced by --clean * `replacements` is removed: https://goreleaser.com/deprecations/#archivesreplacements * update to goreleaser v2 * goreleaser version must be specified in .goreleaser.yml * --skip-publish is replaced by --skip=publish
This commit is contained in:
parent
825b4298b8
commit
92a23229f8
@ -1,5 +1,6 @@
|
||||
# .goreleaser.yml
|
||||
# Build customization
|
||||
version: 2
|
||||
project_name: ergo
|
||||
builds:
|
||||
- main: ergo.go
|
||||
@ -54,11 +55,12 @@ builds:
|
||||
|
||||
archives:
|
||||
-
|
||||
name_template: "{{ .ProjectName }}-{{ .Version }}-{{ .Os }}-{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
|
||||
name_template: >-
|
||||
{{ .ProjectName }}-{{ .Version }}-
|
||||
{{- if eq .Os "darwin" }}macos{{- else }}{{ .Os }}{{ end -}}-
|
||||
{{- if eq .Arch "amd64" }}x86_64{{- else }}{{ .Arch }}{{ end -}}
|
||||
{{ if .Arm }}v{{ .Arm }}{{ end -}}
|
||||
format: tar.gz
|
||||
replacements:
|
||||
amd64: x86_64
|
||||
darwin: macos
|
||||
format_overrides:
|
||||
- goos: windows
|
||||
format: zip
|
||||
|
Loading…
Reference in New Issue
Block a user