-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy path.goreleaser.yml
82 lines (76 loc) · 2.27 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
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"
aurs:
- name: pillager-bin
homepage: "https://github.com/brittonhayes/pillager"
description: "Pillage filesystems for sensitive information"
maintainers:
- "brittonhayes <[email protected]>"
license: "MIT"
private_key: "~/.ssh/aur"
git_url: "ssh://[email protected]/pillager-bin.git"
provides:
- pillager
package: |-
# bin
install -Dm755 "./pillager" "${pkgdir}/usr/bin/pillager"
# license
install -Dm644 "./LICENSE" "${pkgdir}/usr/share/licenses/pillager/LICENSE"
commit_author:
name: "brittonhayes"
email: "[email protected]"
commit_msg_template: "Update to {{ .Tag }}"
goamd64: v1