diff --git a/.goreleaser.yml b/.goreleaser.yml new file mode 100644 index 0000000..74912a8 --- /dev/null +++ b/.goreleaser.yml @@ -0,0 +1,10 @@ +# .goreleaser.yml +# Build customization +builds: + - binary: expreduce + goos: + - windows + - darwin + - linux + goarch: + - amd64 diff --git a/.travis.yml b/.travis.yml index 4943841..ab54b75 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,3 +10,9 @@ go_import_path: github.com/corywalker/expreduce script: - go test -v ./... + +after_success: + - test -n "$TRAVIS_TAG" && curl -sL https://git.io/goreleaser | bash + +notifications: + email: false