-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy path.goreleaser.yml
75 lines (75 loc) · 1.76 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
project_name: kube-compare
version: 2
release:
github:
owner: openshift
name: kube-compare
builds:
- id: kube-compare
binary: kubectl-cluster_compare
goos:
- linux
- windows
- darwin
goarch:
- amd64
- arm64
env:
- CGO_ENABLED=0
- GO111MODULE=on
main: cmd/kubectl-cluster_compare.go
ldflags: -s -w
-X github.com/openshift/kube-compare/pkg/version.version=
- id: helm-convert
binary: helm-convert
goos:
- linux
- windows
- darwin
goarch:
- amd64
- arm64
env:
- CGO_ENABLED=0
- GO111MODULE=on
main: addon-tools/helm-convert/helm-convert.go
ldflags: -s -w
-X github.com/openshift/kube-compare/addon-tools/helm-convert/version.version=
- id: report-creator
binary: report-creator
goos:
- linux
- windows
- darwin
goarch:
- amd64
- arm64
env:
- CGO_ENABLED=0
- GO111MODULE=on
main: addon-tools/report-creator/report-creator.go
ldflags: -s -w
-X github.com/openshift/kube-compare/addon-tools/report-creator/version.version=
archives:
- id: kube-compare
builds:
- kube-compare
name_template: "{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}"
format_overrides:
- goos: windows
format: zip
- id: kube-compare-addon-tools
builds:
- helm-convert
- report-creator
name_template: "{{ .ProjectName }}_addon_tools_{{ .Os }}_{{ .Arch }}"
format_overrides:
- goos: windows
format: zip
files:
- src: addon-tools/README.md
dst: README.md
- src: addon-tools/helm-convert/README.md
dst: README_helm-convert.md
- src: addon-tools/report-creator/README.md
dst: README_report-creator.md