By participating to this project, you agree to abide our code of conduct.
goreleaser is written in Go.
Prerequisites are:
- Build:
make- Go 1.8+
Clone goreleaser from source into $GOPATH:
$ pkdir -p $GOPATH/src/github.com/github.com/goreleaser
$ cd $_
$ git clone git@github.com:goreleaser/goreleaser.git
$ cd goreleaserInstall the build and lint dependencies:
$ make setupA good way of making sure everything is all right is running the test suite:
$ make testYou can create a branch for your changes and try to build from the source as you go:
$ make buildWhen you are satisfied with the changes, we suggest you run:
$ make ciWhich runs all the linters and tests.
Push your branch to your goreleaser fork and open a pull request against the
master branch.