brew install go
brew install goreleaser/tap/goreleaser
For goreleaser to work, you must have
GITHUB_TOKEN
set in your environment to a Github
token with full repo scope.
go get -u ./...
git add go.mod go.sum
git commit -m "Update dependencies"
vi History.md
git add History.md
git commit History.md
git push origin master
git tag -a v0.17.0 -m "Release v0.17.0"
git push origin v0.17.0
export GITHUB_TOKEN=...
make release