mirror of https://github.com/helm/helm
Merge pull request #31343 from TerryHowe/chore-replace-mitchellh-gox-with-goreleaser
chore: replace mitchellh/gox with goreleaserpull/32105/head
commit
ad18580255
@ -0,0 +1,74 @@
|
|||||||
|
version: 2
|
||||||
|
|
||||||
|
project_name: helm
|
||||||
|
|
||||||
|
dist: _dist
|
||||||
|
builds:
|
||||||
|
- env:
|
||||||
|
- CGO_ENABLED=0
|
||||||
|
goos:
|
||||||
|
- linux
|
||||||
|
- windows
|
||||||
|
- darwin
|
||||||
|
goarch:
|
||||||
|
- amd64
|
||||||
|
- arm64
|
||||||
|
- arm
|
||||||
|
- "386"
|
||||||
|
- ppc64le
|
||||||
|
- s390x
|
||||||
|
- riscv64
|
||||||
|
- loong64
|
||||||
|
goamd64:
|
||||||
|
- v1
|
||||||
|
goarm:
|
||||||
|
- "7"
|
||||||
|
goarm64:
|
||||||
|
- v8.0
|
||||||
|
go386:
|
||||||
|
- sse2
|
||||||
|
goriscv64:
|
||||||
|
- rva20u64
|
||||||
|
ignore:
|
||||||
|
- goos: darwin
|
||||||
|
goarch: "386"
|
||||||
|
- goos: darwin
|
||||||
|
goarch: arm
|
||||||
|
- goos: darwin
|
||||||
|
goarch: ppc64le
|
||||||
|
- goos: darwin
|
||||||
|
goarch: s390x
|
||||||
|
- goos: darwin
|
||||||
|
goarch: riscv64
|
||||||
|
- goos: darwin
|
||||||
|
goarch: loong64
|
||||||
|
- goos: windows
|
||||||
|
goarch: "386"
|
||||||
|
- goos: windows
|
||||||
|
goarch: arm
|
||||||
|
- goos: windows
|
||||||
|
goarch: ppc64le
|
||||||
|
- goos: windows
|
||||||
|
goarch: s390x
|
||||||
|
- goos: windows
|
||||||
|
goarch: riscv64
|
||||||
|
- goos: windows
|
||||||
|
goarch: loong64
|
||||||
|
main: ./cmd/helm
|
||||||
|
no_unique_dist_dir: true
|
||||||
|
binary: "{{ .Os }}-{{ .Arch }}/helm"
|
||||||
|
ldflags:
|
||||||
|
- "{{ .Env.LDFLAGS }}"
|
||||||
|
flags:
|
||||||
|
- -trimpath
|
||||||
|
dir: .
|
||||||
|
|
||||||
|
snapshot:
|
||||||
|
version_template: "{{ if index .Env \"GORELEASER_CURRENT_TAG\" }}{{ .Env.GORELEASER_CURRENT_TAG }}{{ else }}{{ incpatch .Version }}-next{{ end }}"
|
||||||
|
|
||||||
|
changelog:
|
||||||
|
sort: asc
|
||||||
|
filters:
|
||||||
|
exclude:
|
||||||
|
- '^docs:'
|
||||||
|
- '^test:'
|
||||||
Loading…
Reference in new issue