We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e43a10c commit 209eb5fCopy full SHA for 209eb5f
.gitignore
@@ -1,4 +1,5 @@
1
kubectl-debug
2
+dist
3
4
# Emacs save files
5
*~
.goreleaser.yml
@@ -0,0 +1,27 @@
+project_name: kubectl-debug
+release:
+ github:
+ owner: verb
+ name: kubectl-debug
6
+builds:
7
+ - id: kubectl-debug
8
+ goos:
9
+ - linux
10
+ - windows
11
+ - darwin
12
+ goarch:
13
+ - amd64
14
+ - "386"
15
+ env:
16
+ - CGO_ENABLED=0
17
+ - GO111MODULE=on
18
+ main: cmd/kubectl-debug.go
19
+ ldflags: -s -w
20
+archives:
21
22
+ builds:
23
+ - kubectl-debug
24
+ name_template: "{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}"
25
+ format_overrides:
26
+ - goos: windows
27
+ format: zip
0 commit comments