From bcea78dea25af62cbb74820a6ff53da30d3c0501 Mon Sep 17 00:00:00 2001 From: Steve Coffman Date: Sun, 22 Aug 2021 12:28:19 -0400 Subject: [PATCH] Add go releaser for homebrew Signed-off-by: Steve Coffman --- .goreleaser.yml | 23 +++++++++++++++++------ 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/.goreleaser.yml b/.goreleaser.yml index e608213..981ae43 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -30,15 +30,26 @@ changelog: - '^test:' brews: - + # Name template of the recipe + # Default to project name name: jira-tool - github: + + # GitHub/GitLab repository to push the formula to + # Gitea is not supported yet, but the support coming + tap: owner: StevenACoffman name: homebrew-jira-tool + # Optionally a token can be provided, if it differs from the token provided to GoReleaser + token: "{{ .Env.GITHUB_AUTH_TOKEN }}" folder: Formula + # Your app's homepage. + # Default is empty. homepage: "https://github.com/StevenACoffman/jira-tool" + + # Template of your app's description. + # Default is empty. description: jt - jira-tool is a CLI tool for viewing and manipulating JIRA issues. -test: | - system "#{bin}/jt", "--version" - install: | - bin.install "jt" => "jt" - prefix.install_metafiles \ No newline at end of file + + # SPDX identifier of your app's license. + # Default is empty. + license: "MIT"