-
-
Notifications
You must be signed in to change notification settings - Fork 60
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
792ddb1
commit 9d3f7bf
Showing
1 changed file
with
30 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,30 @@ | ||
# goreleaser.yml | ||
build: | ||
# Path to main.go file or main package. | ||
# Default is `.` | ||
main: ./main.go | ||
|
||
# Name of the binary. | ||
# Default is the name of the project directory. | ||
binary: tokenbalance | ||
|
||
# Custom build tags. | ||
# Default is empty | ||
flags: -tags dev | ||
|
||
# Custom ldflags. | ||
# Default is `-s -w` | ||
ldflags: -s -w | ||
|
||
# GOOS list to build in. | ||
# For more info refer to https://golang.org/doc/install/source#environment | ||
# Defaults are darwin and linux | ||
goos: | ||
- freebsd | ||
- windows | ||
|
||
# GOARCH to build in. | ||
# For more info refer to https://golang.org/doc/install/source#environment | ||
# Defaults are 386 and amd64 | ||
goarch: | ||
- amd64 |