From a47e207a7e1e6d7f6b8ac73f77fc0540ba890e08 Mon Sep 17 00:00:00 2001 From: Angus Gratton Date: Mon, 23 Nov 2020 10:23:24 +1100 Subject: [PATCH] ci: Fix annotated tag check Regression in 1612f84 --- tools/ci/config/pre_check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ci/config/pre_check.yml b/tools/ci/config/pre_check.yml index f6e68090d2..4893117b96 100644 --- a/tools/ci/config/pre_check.yml +++ b/tools/ci/config/pre_check.yml @@ -192,4 +192,4 @@ check_version_tag: - .pre_check_job_template - .rules:tag:release-no_label script: - - (git cat-file -t $CI_COMMIT_REF_NAME | grep tag) || echo "ESP-IDF versions must be annotated tags." && exit 1 + - (git cat-file -t $CI_COMMIT_REF_NAME | grep tag) || (echo "ESP-IDF versions must be annotated tags." && exit 1)