chore(travis): actually skip build on deployment job when from Pull Request
This commit is contained in:
@@ -47,7 +47,7 @@ case "$JOB" in
|
||||
;;
|
||||
"deploy")
|
||||
# we never deploy on Pull requests, so it's safe to skip the build here
|
||||
if [[ $TRAVIS_PULL_REQUEST != 'false' ]]; then
|
||||
if [[ "$TRAVIS_PULL_REQUEST" == "false" ]]; then
|
||||
grunt package
|
||||
grunt compress:firebaseCodeDeploy
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user