-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Include versions in goreleaser distributions and re-rename archives
- Loading branch information
1 parent
67c6d4f
commit 1017082
Showing
4 changed files
with
29 additions
and
12 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
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
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 |
---|---|---|
|
@@ -20,6 +20,17 @@ builds: | |
- linux | ||
- windows | ||
|
||
archives: | ||
- name_template: >- | ||
{{ .ProjectName }}_{{ .Version }}_ | ||
{{- if eq .Os "darwin" }}Darwin | ||
{{- else if eq .Os "linux" }}Linux | ||
{{- else if eq .Os "windows" }}Windows | ||
{{- else }}{{ .Os }}{{ end }}_ | ||
{{- if eq .Arch "amd64" }}x86_64 | ||
{{- else if eq .Arch "386" }}i386 | ||
{{- else }}{{ .Arch }}{{ end }} | ||
checksum: | ||
name_template: 'checksums.txt' | ||
|
||
|
@@ -42,16 +53,19 @@ release: | |
name: wander | ||
|
||
brews: | ||
- homepage: https://github.com/robinovitch61/wander | ||
description: "A terminal app for Nomad by HashiCorp" | ||
- name: wander | ||
homepage: https://github.com/robinovitch61/wander | ||
description: "A terminal app/TUI for HashiCorp Nomad" | ||
folder: Formula | ||
tap: | ||
commit_author: | ||
name: goreleaserbot | ||
email: [email protected] | ||
commit_msg_template: "Brew formula update for {{ .ProjectName }} version {{ .Tag }}" | ||
repository: | ||
owner: robinovitch61 | ||
name: homebrew-tap | ||
branch: main | ||
token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}" | ||
commit_author: | ||
name: goreleaserbot | ||
email: [email protected] | ||
install: | | ||
bin.install "wander" | ||
|
||
gomod: | ||
proxy: true |
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