From 9b1f69e6b16c017719639b01c8d8a7800266ac94 Mon Sep 17 00:00:00 2001 From: Cheerego <35982308+shanyi15@users.noreply.github.com> Date: Wed, 26 Jun 2019 22:37:48 +0800 Subject: [PATCH] try to fix travis ci (#947) --- scripts/deploy_docs.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/deploy_docs.sh b/scripts/deploy_docs.sh index d886ca925..d2c41842d 100755 --- a/scripts/deploy_docs.sh +++ b/scripts/deploy_docs.sh @@ -21,9 +21,9 @@ if [[ "$TRAVIS_PULL_REQUEST" != "false" ]]; then exit $exit_code; fi; # Deploy to the the content server if its a "develop" or "release/version" branch # The "develop_doc" branch is reserved to test full deploy process without impacting the real content. if [ "$TRAVIS_BRANCH" == "develop_doc" ]; then - PPO_SCRIPT_BRANCH=develop + PPO_SCRIPT_BRANCH=reset_pass_travisci elif [[ "$TRAVIS_BRANCH" == "develop" || "$TRAVIS_BRANCH" =~ ^v|release/[[:digit:]]+\.[[:digit:]]+(\.[[:digit:]]+)?(-\S*)?$ ]]; then - PPO_SCRIPT_BRANCH=master + PPO_SCRIPT_BRANCH=reset_pass_travisci else # Early exit, this branch doesn't require documentation build echo "This branch doesn't require documentation build"; -- GitLab