diff --git a/goreleaser.yml b/goreleaser.yml new file mode 100644 index 0000000..af69054 --- /dev/null +++ b/goreleaser.yml @@ -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 \ No newline at end of file