Skip to content

Commit

Permalink
prepare for first release (again) (#22)
Browse files Browse the repository at this point in the history
fixes in GoRelease config

Signed-off-by: Xavier Coulon <[email protected]>
  • Loading branch information
xcoulon authored Oct 8, 2021
1 parent b1e2003 commit ac7abf2
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 28 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,5 @@

bin
tmp

dist/
45 changes: 17 additions & 28 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -1,36 +1,25 @@
# This is an example goreleaser.yaml file with some sane defaults.
# Make sure to check the documentation at http://goreleaser.com
before:
hooks:
# you may remove this if you don't use vgo
# - go mod download
# you may remove this if you don't need go generate
# - go generate ./...
builds:
-
# Path to main.go file or main package.
# Default is `.`.
main: ./cmd
# Custom ldflags templates.
# Default is `-s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.Date}}`.
ldflags:
- "-s -w -X github.com/xcoulon/kubectl-terminate/cmd.BuildCommit={{.Commit}} github.com/xcoulon/kubectl-terminate/cmd.BuildTag={{.Version}} -X github.com/xcoulon/kubectl-terminate/cmd.BuildTime={{.Date}}"
env:
- CGO_ENABLED=0
archive:
replacements:
darwin: Darwin
linux: Linux
windows: Windows
386: i386
amd64: x86_64
- env:
- CGO_ENABLED=0
main: ./cmd/main.go
goos:
- linux
- windows
- darwin
archives:
- replacements:
darwin: Darwin
linux: Linux
windows: Windows
386: i386
amd64: x86_64
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-next"
name_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
- '^docs:'
- '^test:'

0 comments on commit ac7abf2

Please sign in to comment.