From 9f8696c00c7ef11abb3850e4694bc7375365295e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Paczos?= Date: Fri, 16 Aug 2019 10:14:36 +0200 Subject: [PATCH] [build] do not skip tag-initiated builds --- circle.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circle.yml b/circle.yml index 68c49dd3f67..47bc1e9bdb7 100644 --- a/circle.yml +++ b/circle.yml @@ -493,7 +493,7 @@ commands: - run: name: Check if this job can be skipped command: | - if [[ $CIRCLE_BRANCH != master ]] && [[ $CIRCLE_BRANCH != release-* ]]; then + if [[ $CIRCLE_BRANCH != master ]] && [[ $CIRCLE_BRANCH != release-* ]] && [[ -z $CIRCLE_TAG ]]; then scripts/check-ci-job-skippability.js fi