-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yaml
63 lines (53 loc) · 1.73 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
project_name: plist
builds:
- env: [CGO_ENABLED=0]
goos:
- linux
- windows
- darwin
goarch:
- amd64
- arm64
nfpms:
- maintainer: Aurelio Calegari ([email protected])
description: Apple's PLIST converter
homepage: https://github.com/aurc/plist
license: Apache-2.0
formats:
- deb
- rpm
- apk
brews:
-
name: plist
# 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
tap:
owner: aurc
name: homebrew-tap
branch: main
# # Optionally a token can be provided, if it differs from the token provided to GoReleaser
# token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"
url_template: "https://github.com/aurc/plist/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
commit_author:
name: aurc_bot
email: [email protected]
# 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.
folder: 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/homebrew-tap"
# Template of your app's description.
# Default is empty.
description: "CLI tool to convert Apple's plist files into Yaml and Json."
# SPDX identifier of your app's license.
# Default is empty.
license: "Apache-2.0"