-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy path.goreleaser.yml
59 lines (55 loc) · 1.56 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
version: 2
before:
hooks:
# You may remove this if you don't use go modules.
- go mod download
- go vet
builds:
- goos:
- linux
- windows
- darwin
ldflags:
- -s -w -X github.com/brittonhayes/pillager/internal/commands/version.version={{.Version}}
- -X main.commit={{.Commit}}
- -X main.date={{.Date}}
- -X main.builtBy=goreleaser
main: "./cmd/pillager"
checksum:
name_template: "checksums.txt"
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- "^docs:"
- "^test:"
- "^images:"
- "^_examples:"
scoops:
- name: pillager
repository:
owner: brittonhayes
name: pillager-scoop
url_template: "https://github.com/brittonhayes/pillager/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
commit_author:
name: goreleaserbot
email: [email protected]
commit_msg_template: "Scoop update for {{ .ProjectName }} version {{ .Tag }}"
description: "Pillage filesystems for sensitive information"
license: MIT
homepage: "https://github.com/brittonhayes/pillager"
brews:
- name: pillager
goarm: "6"
repository:
owner: brittonhayes
name: homebrew-pillager
url_template: "https://github.com/brittonhayes/pillager/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
commit_author:
name: goreleaserbot
email: [email protected]
homepage: "https://github.com/brittonhayes/pillager"
description: "Pillage filesystems for sensitive information"
license: "MIT"