-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Andrii Abramov
committed
Nov 7, 2021
1 parent
3199616
commit 9ba2e0f
Showing
1 changed file
with
59 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
# .goreleaser.yml | ||
brews: | ||
- # Name template of the recipe | ||
# Default to project name | ||
name: goal | ||
|
||
# GitHub/GitLab repository to push the formula to | ||
tap: | ||
owner: aaabramov | ||
name: goal | ||
branch: master | ||
|
||
url_template: "http://github.com/aaabramov/goal/releases/{{ .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. | ||
# Default is empty. | ||
caveats: "See https://github.com/aaabramov/goal" | ||
|
||
# Your app's homepage. | ||
homepage: "https://github.com/aaabramov/goal" | ||
|
||
# Template of your app's description. | ||
description: "Use your aliases safely" | ||
|
||
# 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" | ||
# ... |