Skip to content

Commit

Permalink
Merge pull request #1885 from ArturKlauser/travis-pr-fix
Browse files Browse the repository at this point in the history
Don't try to deploy docker images on PR runs
  • Loading branch information
koalaman authored Apr 1, 2020
2 parents 37a72d0 + 615063a commit a0005bf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ jobs:
os: osx

- stage: Deploy docker image
if: branch = master
# Deploy only for pushes to master branch, not other branches, not PRs.
if: branch = master AND type = push
script:
- source ./.multi_arch_docker
- set -ex; multi_arch_docker::main; set +x
Expand Down

0 comments on commit a0005bf

Please sign in to comment.