-
Notifications
You must be signed in to change notification settings - Fork 119
/
.goreleaser.yaml
58 lines (48 loc) · 1.11 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
project_name: criticality_score
before:
hooks:
- go mod tidy
builds:
- main: ./cmd/criticality_score
id: "criticality_score"
binary: criticality_score
flags:
- -buildvcs
env:
- CGO_ENABLED=0
- main: ./cmd/enumerate_github
id: "enumerate_github"
binary: enumerate_github
env:
- CGO_ENABLED=0
- main: ./cmd/scorer
id: "scorer"
binary: scorer
env:
- CGO_ENABLED=0
archives:
- id: tarballs
format: tar.gz
format_overrides:
- goos: windows
format: zip
files:
- LICENSE
- README.md
- src: cmd/criticality_score/README.md
dst: README_criticality_score.md
- src: cmd/enumerate_github/README.md
dst: README_enumerate_github.md
- src: cmd/scorer/README.md
dst: README_scorer.md
rlcp: true
checksum:
name_template: '{{ .ProjectName }}_{{ .Version }}_checksums.txt'
snapshot:
name_template: "{{ incpatch .Version }}-next"
changelog:
skip: true
release:
draft: false
# yaml-language-server: $schema=https://goreleaser.com/static/schema.json
# vim: set ts=2 sw=2 tw=0 fo=cnqoj