https://github.com/thomasheller/baz
Build and zip releases (Go) :gift:
https://github.com/thomasheller/baz
build build-tool go golang
Last synced: about 2 months ago
JSON representation
Build and zip releases (Go) :gift:
- Host: GitHub
- URL: https://github.com/thomasheller/baz
- Owner: thomasheller
- License: mit
- Created: 2017-02-12T13:07:59.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-02-12T13:08:37.000Z (over 8 years ago)
- Last Synced: 2025-02-13T14:40:45.432Z (4 months ago)
- Topics: build, build-tool, go, golang
- Language: Shell
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# baz
Build and zip releases of Go programs.
Simply run `baz.sh` in the directory of the Go program you would like
to build and create releases for.The script uses [gox](https://github.com/mitchellh/gox) to build the
program for all platforms and architectures.It will create a `builds` sub-directory containing Zip archives (for
Windows builds) and Tarballs (for Unix-like builds) for all builds.If files named `README`, `README.md` and/or `LICENSE` are present in
your program's directory, `baz.sh` will add them to the archives.Don't keep any other `*.zip` or `*.tar.gz` files in the `builds`
directory -- the script would delete them.---
I should turn this into a Go program, actually.