-
Notifications
You must be signed in to change notification settings - Fork 1
/
.goreleaser.yml
88 lines (74 loc) · 2.4 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
# .goreleaser.yml
project_name: terp
builds:
-
main: dummy.go
targets:
- linux_amd64
- linux_arm64
- darwin_amd64
- darwin_arm64
- windows_amd64
binary: terp
hooks:
post: pwsh goreleaser-post-hook.ps1
checksum:
name_template: 'checksums.txt'
brews:
- tap:
owner: kindlyops
name: homebrew-tap
# Git author used to commit to the repository.
# Defaults are shown.
commit_author:
name: support-kindlyops
email: [email protected]
# 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/terp"
# Your app's description.
# Default is empty.
description: "🙈 terp is an experimental eBPF diagnostic interpreter"
# So you can `brew test` your formula.
# Default is empty.
test: |
system "#{bin}/terp --version"
# Custom install script for brew.
# Default is 'bin.install "program"'.
install: |
bin.install "terp"
scoop:
# Template for the url which is determined by the given Token (github or gitlab)
# Default for github is "https://github.com/<repo_owner>/<repo_name>/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
# Default for gitlab is "https://gitlab.com/<repo_owner>/<repo_name>/uploads/{{ .ArtifactUploadHash }}/{{ .ArtifactName }}"
# Gitea is not supported yet, but the support coming
url_template: "http://github.com/kindlyops/vbs/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: [email protected]
# Your app's homepage.
# Default is empty.
homepage: "https://github.com/kindlyops/terp"
# Your app's description.
# Default is empty.
description: "🙈 terp is an experimental eBPF diagnostic interpreter"
# Your app's license
# Default is empty.
license: Apache2