-
Notifications
You must be signed in to change notification settings - Fork 187
/
goreleaser.yml
182 lines (178 loc) · 5.78 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
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
# Copyright 2021 ZUP IT SERVICOS EM TECNOLOGIA E INOVACAO SA
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
project_name: horusec
builds:
- id: horusec
env: [ CGO_ENABLED=0 ]
main: ./cmd/app/main.go
ldflags:
- -X 'github.com/ZupIT/horusec/cmd/app/version.Version={{ .Env.CLI_VERSION }}'
- -X 'github.com/ZupIT/horusec/cmd/app/version.Commit={{ .Commit }}'
- -X 'github.com/ZupIT/horusec/cmd/app/version.Date={{ .Env.CURRENT_DATE }}'
- -s -w
goos:
- linux
- windows
- darwin
goarch:
- amd64
- arm64
- "386"
binary: horusec_{{ replace (replace .Os "windows" "win") "darwin" "mac" }}_{{ replace .Arch "386" "x86" }}
- id: horusec-standalone
env: [ CGO_ENABLED=0 ]
main: ./cmd/app/main.go
ldflags:
- -X 'github.com/ZupIT/horusec/cmd/app/version.Version={{ .Env.CLI_VERSION }}'
- -X 'github.com/ZupIT/horusec/cmd/app/version.Commit={{ .Commit }}'
- -X 'github.com/ZupIT/horusec/cmd/app/version.Date={{ .Env.CURRENT_DATE }}'
- -X 'github.com/ZupIT/horusec/config/dist.standAlone=true'
- -s -w
goos:
- linux
- windows
- darwin
goarch:
- amd64
- arm64
- "386"
binary: horusec_{{ replace (replace .Os "windows" "win") "darwin" "mac" }}_{{ replace .Arch "386" "x86" }}_stand_alone
changelog:
skip: false
use: github
groups:
- title: 'Features'
regexp: "^.*:(feature|feat)\\s-.*$"
order: 0
- title: 'Bug fixes'
regexp: "^.*:(bugfix|fix)\\s-.*$"
order: 1
- title: 'Hotfixes'
regexp: "^.*:hotfix\\s-.*$"
order: 2
- title: 'Chores'
regexp: "^.*:chore\\s-.*$"
order: 3
- title: Others
order: 999
filters:
exclude:
- '^deps:chore.*$'
- '^build(deps):.*$'
snapshot:
name_template: '{{ incpatch .Tag }}'
archives:
- id: horusec
builds:
- horusec
name_template: horusec_{{ replace (replace .Os "Windows" "win") "darwin" "mac" }}_{{ replace .Arch "386" "x86" }}
format: binary
- id: horusec-standalone
builds:
- horusec-standalone
name_template: horusec_{{ replace (replace .Os "Windows" "win") "darwin" "mac" }}_{{ replace .Arch "386" "x86" }}_stand_alone
format: binary
checksum:
name_template: 'checksums.txt'
release:
draft: false
prerelease: auto
mode: append
footer: |
## Docker images
- `docker pull horuszup/horusec-cli:{{ .Tag }}`
**Full Changelog**: https://github.com/ZupIT/horusec/compare/{{ .PreviousTag }}...{{ .Tag }}
extra_files:
- glob: deployments/cosign.pub
nfpms:
- id: horusec
package_name: horusec
file_name_template: horusec_{{ replace (replace .Os "Windows" "win") "darwin" "mac" }}_{{ replace .Arch "386" "x86" }}
builds:
- horusec
homepage: https://horusec.io/
maintainer: ZupIT <horusec@zup.com.br>
description: Horusec is an open source tool that improves identification of vulnerabilities in your project with just one command.
license: Apache 2.0
formats:
- deb
- rpm
suggests:
- git
- docker
bindir: /usr/local/bin
priority: extra
signs:
- cmd: cosign
stdin: '{{ .Env.COSIGN_PWD }}'
args: [ "sign-blob", "-key={{ .Env.COSIGN_KEY_LOCATION }}", "-output=${signature}", "${artifact}" ]
artifacts: all
docker_signs:
- cmd: cosign
args: [ "sign", "-key={{ .Env.COSIGN_KEY_LOCATION }}", "${artifact}" ]
artifacts: all
stdin: '{{ .Env.COSIGN_PWD }}'
dockers:
- image_templates:
- 'horuszup/horusec-cli:{{ .Tag }}-amd64'
skip_push: "false"
goos: linux
goarch: amd64
dockerfile: ./deployments/Dockerfile-gorelease-amd64
use: docker
build_flag_templates:
- "--pull"
- "--label=org.opencontainers.image.created={{.Date}}"
- "--label=org.opencontainers.image.title={{.ProjectName}}"
- "--label=org.opencontainers.image.revision={{.FullCommit}}"
- "--label=org.opencontainers.image.version={{.Version}}"
- "--platform=linux/amd64"
push_flags:
- --tls-verify=false
- image_templates:
- 'horuszup/horusec-cli:{{ .Tag }}-arm64'
skip_push: "false"
goos: linux
goarch: arm64
dockerfile: ./deployments/Dockerfile-gorelease-arm64
use: docker
build_flag_templates:
- "--pull"
- "--label=org.opencontainers.image.created={{.Date}}"
- "--label=org.opencontainers.image.title={{.ProjectName}}"
- "--label=org.opencontainers.image.revision={{.FullCommit}}"
- "--label=org.opencontainers.image.version={{.Version}}"
- "--platform=linux/arm64"
push_flags:
- --tls-verify=false
docker_manifests:
- name_template: 'horuszup/horusec-cli:{{ .Tag }}'
image_templates:
- 'horuszup/horusec-cli:{{ .Tag }}-amd64'
- 'horuszup/horusec-cli:{{ .Tag }}-arm64'
- name_template: 'horuszup/horusec-cli:latest'
image_templates:
- 'horuszup/horusec-cli:{{ .Tag }}-amd64'
- 'horuszup/horusec-cli:{{ .Tag }}-arm64'
skip_push: auto
- name_template: 'horuszup/horusec-cli:v{{ .Major }}'
image_templates:
- 'horuszup/horusec-cli:{{ .Tag }}-amd64'
- 'horuszup/horusec-cli:{{ .Tag }}-arm64'
skip_push: auto
- name_template: 'horuszup/horusec-cli:v{{ .Major }}.{{ .Minor }}'
image_templates:
- 'horuszup/horusec-cli:{{ .Tag }}-amd64'
- 'horuszup/horusec-cli:{{ .Tag }}-arm64'
skip_push: auto