-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
e0397db
commit 87c26eb
Showing
2 changed files
with
69 additions
and
4 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,57 @@ | ||
builds: | ||
- | ||
ldflags: | ||
- -s -w -X "main.version={{.Env.RELEASE_VERSION}}" | ||
main: cmd/gvs/main.go | ||
binary: gvs | ||
goos: | ||
- darwin | ||
- linux | ||
# - windows | ||
goarch: | ||
- 386 | ||
- amd64 | ||
- arm | ||
- arm64 | ||
goarm: | ||
- 6 | ||
- 7 | ||
# ignore: | ||
# - goos: windows | ||
# goarch: arm | ||
checksum: | ||
name_template: '{{ .ProjectName }}_{{.Env.RELEASE_VERSION}}_checksums.txt' | ||
changelog: | ||
sort: asc | ||
filters: | ||
exclude: | ||
- '^docs:' | ||
- '^test:' | ||
archives: | ||
- | ||
name_template: '{{ .ProjectName }}_{{.Env.RELEASE_VERSION}}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}' | ||
replacements: | ||
darwin: darwin | ||
linux: linux | ||
386: 386 | ||
amd64: amd64 | ||
# format_overrides: | ||
# - goos: windows | ||
# format: zip | ||
brews: | ||
- | ||
name: gvs | ||
commit_author: | ||
name: Vasileios Pallas | ||
email: [email protected] | ||
folder: Formula | ||
caveats: "Type 'gvs' on your command line and choose the Go version that you want from the dropdown. This command currently only works on macOS and Linux" | ||
homepage: "https://github.com/VassilisPallas/gvs" | ||
description: "A command line tool to manage multiple active Go versions." | ||
conflicts: | ||
- go | ||
skip_upload: false | ||
test: | | ||
system "#{bin}/gvs --version" | ||
install: | | ||
bin.install "gvs" |
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