-
Notifications
You must be signed in to change notification settings - Fork 1
/
.goreleaser.yml
95 lines (78 loc) · 2.39 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
# .goreleaser.yml
project_name: deleterious
builds:
-
main: dummy.go
targets:
- linux_amd64
- linux_arm64
- darwin_amd64
- darwin_arm64
- windows_amd64
binary: deleterious
hooks:
post: ./goreleaser-post-hook.sh
checksum:
name_template: 'checksums.txt'
sboms:
- artifacts: archive
announce:
discord:
enabled: true
message_template: '{{ .ProjectName }} {{ .Tag }} is out! Check it out at {{ .ReleaseURL }} or brew upgrade {{ .ProjectName }}'
author: 'GoReleaser'
brews:
- # Repository to push the tap to.
tap:
owner: kindlyops
name: homebrew-tap
# Git author used to commit to the repository.
# Defaults are shown.
commit_author:
name: support-kindlyops
email: support@kindlyops.com
# Caveats for the user of your binary.
# Default is empty.
caveats: |2
Brought to you by
_ ___ _ _ ___
| |/ (_)_ __ __| | |_ _ / _ \\ _ __ ___
| ' /| | '_ \\ / _| | | | | | | | | '_ \\/ __|
| . \\| | | | | (_| | | |_| | |_| | |_) \__ \\
|_|\\_\\_|_| |_|\\__,_|_|\\__, |\\___/| .__/|___/
|___/ |_|
use at your own risk.
# Your app's homepage.
# Default is empty.
homepage: "https://github.com/kindlyops/deleterious"
# Your app's description.
# Default is empty.
description: "Deleterious helps find orphaned resources from AWS CloudFormation DeletionPolicy: Retain"
# So you can `brew test` your formula.
# Default is empty.
test: |
system "#{bin}/deleterious --version"
# Custom install script for brew.
# Default is 'bin.install "program"'.
install: |
bin.install "deleterious"
scoop:
url_template: "http://github.com/kindlyops/deleterious/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
# Repository to push the app manifest to.
bucket:
owner: kindlyops
name: kindlyops-scoop
# Git author used to commit to the repository.
# Defaults are shown.
commit_author:
name: support-kindlyops
email: support@kindlyops.com
# Your app's homepage.
# Default is empty.
homepage: "https://github.com/kindlyops/deleterious"
# Your app's description.
# Default is empty.
description: "Deleterious helps find orphaned resources from AWS CloudFormation DeletionPolicy: Retain"
# Your app's license
# Default is empty.
license: Apache2