Add config for releasing binaries for various platforms, so that users don't have to build them themselves.
Usage is:
commit, push and tag new version (e.g. v1.1.2)
run go get github.com/goreleaser/goreleaser (only the first time)
export GITHUB_TOKEN=YOUR_TOKEN (generated with repo scope)
goreleaser --rm-dist [--release-notes FILE] [--skip-publish if you want to test it] - this will build all binaries, archive them to tar.gz and create new release on github
Add config for releasing binaries for various platforms, so that users don't have to build them themselves.
Usage is:
v1.1.2
)run go get github.com/goreleaser/goreleaser
(only the first time)export GITHUB_TOKEN=YOUR_TOKEN
(generated with repo scope)goreleaser --rm-dist [--release-notes FILE] [--skip-publish if you want to test it]
- this will build all binaries, archive them to tar.gz and create new release on githubfor more info see https://goreleaser.com/
solves #18