-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yml
55 lines (43 loc) · 1.58 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
brews:
- name: goal
# GitHub/GitLab repository to push the formula to
tap:
owner: aaabramov
name: goal
branch: master
url_template: "https://github.com/aaabramov/goal/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
# Git author used to commit to the repository.
# Defaults are shown.
commit_author:
name: goreleaserbot
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.
caveats: "See https://github.com/aaabramov/goal"
# Your app's homepage.
homepage: "https://github.com/aaabramov/goal"
# Template of your app's description.
description: "Allows you to create local aliases withing directory/repository with proper assertions upon executions."
# SPDX identifier of your app's license.
license: "Apache-2.0"
# So you can `brew test` your formula.
# Default is empty.
# TODO?
# test: |
# system "#{bin}/program --version"
# ...
# Custom install script for brew.
# Default is 'bin.install "program"'.
# install: |
# bin.install "program"
# ...
# Custom post_install script for brew.
# Could be used to do any additional work after the "install" script
# Default is empty.
# post_install: |
# etc.install "app-config.conf"
# ...