mirror of
https://github.com/junegunn/fzf.git
synced 2026-03-01 04:52:36 +08:00
Fix goreleaser deprecation warnings (#4644)
Current goreleaser v2.13.1 has several deprecations: * since v2.2: https://goreleaser.com/deprecations#snapshotname_template * since v2.6: https://goreleaser.com/deprecations#archivesformat * since v2.6: https://goreleaser.com/deprecations#archivesformat_overridesformat * since v2.8: https://goreleaser.com/deprecations#archivesbuilds Check build output locally: `goreleaser release --clean --snapshot`
This commit is contained in:
@@ -85,12 +85,14 @@ notarize:
|
|||||||
|
|
||||||
archives:
|
archives:
|
||||||
- name_template: "{{ .ProjectName }}-{{ .Version }}-{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
|
- name_template: "{{ .ProjectName }}-{{ .Version }}-{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
|
||||||
builds:
|
ids:
|
||||||
- fzf
|
- fzf
|
||||||
format: tar.gz
|
formats:
|
||||||
|
- tar.gz
|
||||||
format_overrides:
|
format_overrides:
|
||||||
- goos: windows
|
- goos: windows
|
||||||
format: zip
|
formats:
|
||||||
|
- zip
|
||||||
files:
|
files:
|
||||||
- non-existent*
|
- non-existent*
|
||||||
|
|
||||||
@@ -102,7 +104,7 @@ release:
|
|||||||
name_template: '{{ .Version }}'
|
name_template: '{{ .Version }}'
|
||||||
|
|
||||||
snapshot:
|
snapshot:
|
||||||
name_template: "{{ .Version }}-devel"
|
version_template: "{{ .Version }}-devel"
|
||||||
|
|
||||||
changelog:
|
changelog:
|
||||||
sort: asc
|
sort: asc
|
||||||
|
|||||||
Reference in New Issue
Block a user