From 1e7de47159f82a75fe22cbb4c8a86ad77b6ae05f Mon Sep 17 00:00:00 2001 From: Peter Squicciarini Date: Tue, 14 Aug 2018 10:13:34 -0400 Subject: [PATCH] Fix deploy conditions --- .travis.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8fb9482..695e59d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,8 +9,8 @@ node_js: "8" before_install: - ./install_deps.sh - - . get_repo.sh - - . check_tags.sh + - ./get_repo.sh + - ./check_tags.sh script: - ./build.sh @@ -25,4 +25,5 @@ deploy: file_glob: true file: ./*.zip on: - condition: "$SHOULD_BUILD = yes" + all_branches: true + condition: $SHOULD_BUILD = yes