-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy path.goreleaser.yml
More file actions
138 lines (127 loc) · 3.06 KB
/
.goreleaser.yml
File metadata and controls
138 lines (127 loc) · 3.06 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
version: 2
env:
- CGO_ENABLED=0
builds:
- id: kubernetes-ingress
goos:
- linux
goarch:
- amd64
- arm64
flags:
- -trimpath
gcflags:
- all=-trimpath={{.Env.GOPATH}}
asmflags:
- all=-trimpath={{.Env.GOPATH}}
ldflags:
- -s -w -X main.version={{.Version}}
main: ./cmd/nginx-ingress/
binary: nginx-ingress
## Disable AWS Marketplace builds
# - id: aws
# goos:
# - linux
# goarch:
# - amd64
# - arm64
# flags:
# - -trimpath
# gcflags:
# - all=-trimpath={{.Env.GOPATH}}
# asmflags:
# - all=-trimpath={{.Env.GOPATH}}
# ldflags:
# - -s -w -X main.version={{.Version}} -X main.productCode={{.Env.AWS_PRODUCT_CODE}} -X main.pubKeyString={{.Env.AWS_PUB_KEY}}
# main: ./cmd/nginx-ingress/
# binary: nginx-ingress
# tags:
# - aws
# - id: aws-nap-dos
# goos:
# - linux
# goarch:
# - amd64
# flags:
# - -trimpath
# gcflags:
# - all=-trimpath={{.Env.GOPATH}}
# asmflags:
# - all=-trimpath={{.Env.GOPATH}}
# ldflags:
# - -s -w -X main.version={{.Version}} -X main.productCode={{.Env.AWS_NAP_DOS_PRODUCT_CODE}} -X main.pubKeyString={{.Env.AWS_NAP_DOS_PUB_KEY}}
# main: ./cmd/nginx-ingress/
# binary: nginx-ingress
# tags:
# - aws
# - id: aws-nap-waf
# goos:
# - linux
# goarch:
# - amd64
# flags:
# - -trimpath
# gcflags:
# - all=-trimpath={{.Env.GOPATH}}
# asmflags:
# - all=-trimpath={{.Env.GOPATH}}
# ldflags:
# - -s -w -X main.version={{.Version}} -X main.productCode={{.Env.AWS_NAP_WAF_PRODUCT_CODE}} -X main.pubKeyString={{.Env.AWS_NAP_WAF_PUB_KEY}}
# main: ./cmd/nginx-ingress/
# binary: nginx-ingress
# tags:
# - aws
# - id: aws-nap-both
# goos:
# - linux
# goarch:
# - amd64
# flags:
# - -trimpath
# gcflags:
# - all=-trimpath={{.Env.GOPATH}}
# asmflags:
# - all=-trimpath={{.Env.GOPATH}}
# ldflags:
# - -s -w -X main.version={{.Version}} -X main.productCode={{.Env.AWS_NAP_WAF_DOS_PRODUCT_CODE}} -X main.pubKeyString={{.Env.AWS_NAP_WAF_DOS_PUB_KEY}}
# main: ./cmd/nginx-ingress/
# binary: nginx-ingress
# tags:
# - aws
changelog:
disable: true
archives:
- id: archives
ids: [kubernetes-ingress]
sboms:
- id: sboms
artifacts: archive
ids: [archives]
documents:
- "${artifact}.spdx.json"
release:
ids: [archives, sboms, signs]
blobs:
- provider: azblob
bucket: '{{.Env.AZURE_BUCKET_NAME}}'
signs:
- id: signs
cmd: cosign
artifacts: checksum
output: true
certificate: '${artifact}.pem'
args:
- sign-blob
- "--output-signature=${signature}"
- "--output-certificate=${certificate}"
- "${artifact}"
- "--yes"
announce:
slack:
enabled: true
channel: '#announcements'
message_template: 'NGINX Ingress Controller {{ .Tag }} is out! Check it out: {{ .ReleaseURL }}'
milestones:
- close: true
snapshot:
version_template: '{{.Version}}'