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 fb79a55 commit e9c24cbCopy full SHA for e9c24cb
.goreleaser.yml
@@ -0,0 +1,28 @@
1
+project_name: kubectl-ssh-proxy
2
+release:
3
+ github:
4
+ owner: infinite-turtles
5
+ name: kubectl-ssh-proxy
6
+builds:
7
+ - id: kubectl-ssh-proxy
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-ssh-proxy.go
19
+ ldflags: -s -w
20
+ -X github.com/infinite-turtles/kubectl-ssh-proxy/pkg/version.version=
21
+archives:
22
23
+ builds:
24
+ - kubectl-ssh-proxy
25
+ name_template: "{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}"
26
+ format_overrides:
27
+ - goos: windows
28
+ format: zip
0 commit comments