-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path.goreleaser.yaml
65 lines (55 loc) · 1.78 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
59
60
61
62
63
64
version: 2
project_name: loggo
builds:
- env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
goarch:
- amd64
- arm64
nfpms:
- maintainer: Aurelio Calegari (aurcbot@gmail.com)
description: Rich Terminal User Interface streaming structured logs
homepage: https://github.com/aurc/loggo
license: MIT
formats:
- deb
- rpm
- apk
brews:
-
name: loggo
# GOARM to specify which 32-bit arm version to use if there are multiple versions
# from the build section. Brew formulas support atm only one 32-bit version.
# Default is 6 for all artifacts or each id if there a multiple versions.
goarm: 6
repository:
owner: aurc
name: homebrew-loggo
branch: main
# # Optionally a token can be provided, if it differs from the token provided to GoReleaser
# token: "{{ .Env.HOMEBREW_LOGGO_GITHUB_TOKEN }}"
url_template: "https://github.com/aurc/loggo/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
commit_author:
name: aurc_bot
email: aurcbot@gmail.com
# The project name and current git tag are used in the format string.
commit_msg_template: "Brew formula update for {{ .ProjectName }} version {{ .Tag }}"
# Folder inside the repository to put the formula.
# Default is the root folder.
directory: Formula
# Caveats for the user of your binary.
# Default is empty.
caveats: "How to use this binary"
# Your app's homepage.
# Default is empty.
homepage: "https://github.com/aurc/loggo"
# Template of your app's description.
# Default is empty.
description: "Rich Terminal User Interface for streaming structured logs"
# SPDX identifier of your app's license.
# Default is empty.
license: "MIT"