forked from score-spec/score-helm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yaml
44 lines (44 loc) · 1.06 KB
/
.goreleaser.yaml
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
# Check the documentation at https://goreleaser.com
before:
hooks:
- go mod tidy
builds:
- id: score-helm
binary: score-helm
main: ./cmd/score-helm
ldflags:
- -X github.com/score-spec/score-helm/internal/version.Version={{ .Version }}
- -X github.com/score-spec/score-helm/internal/version.BuildTime={{ .CommitDate }}
- -X github.com/score-spec/score-helm/internal/version.GitSHA={{ .FullCommit }}
env:
- CGO_ENABLED=0
targets:
- linux_amd64_v1
- linux_arm64
- windows_amd64_v1
- darwin_amd64_v1
- darwin_arm64
archives:
- format_overrides:
- goos: windows
format: zip
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
brews:
- name: score-helm
homepage: "https://score.dev"
tap:
owner: score-spec
name: homebrew-tap
token: "{{ .Env.TAP_GITHUB_TOKEN }}"
commit_author:
name: rachfop
email: [email protected]