From 93566a4fad4209d7ee536eaaa7d802ecffe98bb0 Mon Sep 17 00:00:00 2001 From: me-no-dev Date: Wed, 27 Jun 2018 22:21:13 +0200 Subject: [PATCH] fix PR tests --- tools/build.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/build.sh b/tools/build.sh index 5ada1880..541f0536 100755 --- a/tools/build.sh +++ b/tools/build.sh @@ -9,4 +9,6 @@ tools/build-tests.sh if [ $? -ne 0 ]; then exit 1; fi # zip the package if tagged build, otherwise finish here -tools/build-release.sh -a$ESP32_GITHUB_TOKEN +if [ ! -z "$TRAVIS_TAG" ]; then + tools/build-release.sh -a$ESP32_GITHUB_TOKEN +fi