forked from aylei/kubectl-debug
-
Notifications
You must be signed in to change notification settings - Fork 35
/
.goreleaser.yml
45 lines (45 loc) · 1.07 KB
/
.goreleaser.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
project_name: kubectl-debug
before:
hooks:
# you may remove this if you don't use vgo
- go mod download
builds:
- env:
- CGO_ENABLED=0
- GO111MODULE=on
binary: kubectl-debug
main: ./cmd/kubectl-debug/main.go
goos:
- freebsd
- windows
- linux
- darwin
goarch:
- amd64
- 386
ignore:
- goos: darwin
goarch: 386
ldflags:
- -s -w -X 'github.com/jamestgrant/kubectl-debug/version.gitVersion={{.Version}}'
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
brew:
github:
owner: jamestgrant
name: homebrew-tap
commit_author:
name: jamestgrant
email: [email protected]
install: |
bin.install "kubectl-debug"
homepage: "https://www.github.com/jamestgrant/kubectl-debug"
description: "Debug a troublesome container using a dubug container which contains all your favorite troubleshooting tools pre-installed and runs in the same cgroup/ipc/network namespace as your troublesome container"