mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-05-21 22:41:42 +00:00
34 lines
800 B
YAML
34 lines
800 B
YAML
# This is an example goreleaser.yaml file with some sane defaults.
|
|
# Make sure to check the documentation at http://goreleaser.com
|
|
project_name: kustomize
|
|
builds:
|
|
- main: ./kustomize.go
|
|
binary: kustomize
|
|
ldflags: -s -X sigs.k8s.io/kustomize/pkg/commands/misc.kustomizeVersion={{.Version}} -X sigs.k8s.io/kustomize/pkg/commands/misc.gitCommit={{.Commit}} -X sigs.k8s.io/kustomize/pkg/commands/misc.buildDate={{.Date}}
|
|
goos:
|
|
- darwin
|
|
- linux
|
|
- windows
|
|
goarch:
|
|
- amd64
|
|
env:
|
|
- CGO_ENABLED=0
|
|
checksum:
|
|
name_template: 'checksums.txt'
|
|
archive:
|
|
format: binary
|
|
snapshot:
|
|
name_template: "master"
|
|
changelog:
|
|
sort: asc
|
|
filters:
|
|
exclude:
|
|
- '^docs:'
|
|
- '^test:'
|
|
- Merge pull request
|
|
- Merge branch
|
|
release:
|
|
github:
|
|
owner: kubernetes-sigs
|
|
name: kustomize
|