Skip to content

Commit

Permalink
ok
Browse files Browse the repository at this point in the history
  • Loading branch information
hunterlong committed Mar 28, 2017
1 parent 792ddb1 commit 9d3f7bf
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions goreleaser.yml
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

0 comments on commit 9d3f7bf

Please sign in to comment.