diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..a5dd8bc0 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,18 @@ +# .travis.yml +language: go + +services: + - docker + +after_success: + # docker login is required if you want to push docker images. + # DOCKER_PASSWORD should be a secret in your .travis.yml configuration. + # - test -n "$TRAVIS_TAG" && docker login -u=myuser -p="$DOCKER_PASSWORD" + +deploy: + - provider: script + skip_cleanup: true + script: curl -sL https://git.io/goreleaser | bash + on: + tags: true + condition: $TRAVIS_OS_NAME = linux