mirror of
https://github.com/helm/helm.git
synced 2026-05-28 04:35:48 -04:00
update configuration to v2
Signed-off-by: Terry Howe <terrylhowe@gmail.com>
This commit is contained in:
parent
e7bea8513c
commit
e368f170af
2 changed files with 9 additions and 7 deletions
|
|
@ -1,3 +1,5 @@
|
|||
version: 2
|
||||
|
||||
project_name: helm
|
||||
|
||||
before:
|
||||
|
|
@ -50,7 +52,7 @@ builds:
|
|||
dir: .
|
||||
|
||||
archives:
|
||||
- format: tar.gz
|
||||
- id: default
|
||||
# this name template makes the OS and Arch compatible with the results of uname.
|
||||
name_template: >-
|
||||
{{ .ProjectName }}-
|
||||
|
|
@ -59,16 +61,15 @@ archives:
|
|||
{{- else if eq .Arch "386" }}i386
|
||||
{{- else }}{{ .Arch }}{{ end }}
|
||||
{{- if .Arm }}v{{ .Arm }}{{ end }}
|
||||
# use zip for windows archives
|
||||
format_overrides:
|
||||
- goos: windows
|
||||
format: zip
|
||||
files:
|
||||
- LICENSE
|
||||
- README.md
|
||||
|
||||
checksum:
|
||||
name_template: 'checksums.txt'
|
||||
|
||||
snapshot:
|
||||
name_template: "{{ incpatch .Version }}-next"
|
||||
version_template: "{{ incpatch .Version }}-next"
|
||||
|
||||
changelog:
|
||||
sort: asc
|
||||
|
|
|
|||
3
Makefile
3
Makefile
|
|
@ -163,7 +163,8 @@ gen-test-golden: test-unit
|
|||
# without a go.mod file when downloading the following dependencies
|
||||
|
||||
$(GORELEASER):
|
||||
(cd /; go install github.com/goreleaser/goreleaser@latest)
|
||||
echo go install github.com/goreleaser/goreleaser/v2@latest
|
||||
(cd /; go install github.com/goreleaser/goreleaser/v2@latest)
|
||||
|
||||
$(GOIMPORTS):
|
||||
(cd /; go install golang.org/x/tools/cmd/goimports@latest)
|
||||
|
|
|
|||
Loading…
Reference in a new issue