From 3d58ebe3d6daf01f6b1083388562d1e623234686 Mon Sep 17 00:00:00 2001 From: Nick Date: Wed, 6 Nov 2019 22:28:23 -0600 Subject: [PATCH] Fix travis deploying PRs --- .travis.yml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index bdcc14a..6395b89 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,19 +3,22 @@ language: php php: - '7.2' -stages: -- test -- name: deploy - if: branch = msqur.com - branches: only: - master - msqur.com +stages: +- test + jobs: include: - stage: test script: phpunit tests - - stage: deploy - script: bash deploy.sh + +deploy: + provider: script + script: bash deploy.sh + on: + branch: msqur.com + tags: true