Explicitly build on tags in Travis

Setting `branch: master` causes tag builds to be skipped, so we have to
explicitly also build on tags.
This commit is contained in:
Solly Ross 2018-07-13 20:07:23 -04:00
parent a293b2bf94
commit 3fc2dbdf71

View file

@ -24,7 +24,11 @@ services:
- docker - docker
deploy: deploy:
provider: script - provider: script
script: bash .travis-deploy.sh script: bash .travis-deploy.sh
on: on:
branch: master branch: master
- provider: script
script: bash .travis-deploy.sh
on:
tags: true