ci: fix syntax error in `deploy.sh` (#16739)
This commit is contained in:
parent
fdfeaaf1f3
commit
4a599eec45
|
@ -50,9 +50,8 @@ case ${CI_MODE} in
|
||||||
(
|
(
|
||||||
cd ${TRAVIS_BUILD_DIR}/aio
|
cd ${TRAVIS_BUILD_DIR}/aio
|
||||||
|
|
||||||
if [[ $TRAVIS_PULL_REQUEST != "false" ]]; then
|
# Only deploy if this not a PR. PRs are deployed early in `build.sh`.
|
||||||
# This is a PR: It has already been deployed in `build.sh`.
|
if [[ $TRAVIS_PULL_REQUEST == "false" ]]; then
|
||||||
else
|
|
||||||
# This is upstream master: Deploy to staging
|
# This is upstream master: Deploy to staging
|
||||||
travisFoldStart "deploy.aio.staging"
|
travisFoldStart "deploy.aio.staging"
|
||||||
yarn deploy-staging
|
yarn deploy-staging
|
||||||
|
|
Loading…
Reference in New Issue