From 1fb9a414c9d6507c887d4c13295efa78d5ccf2bd Mon Sep 17 00:00:00 2001 From: "Rodrigo Q. Saramago" Date: Sun, 23 Apr 2023 13:36:28 +0200 Subject: [PATCH] Add default value for CIRCLE_TAG --- scripts/ci/notification/matrix_notification.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ci/notification/matrix_notification.sh b/scripts/ci/notification/matrix_notification.sh index ecf14d3e5..cbe290af4 100755 --- a/scripts/ci/notification/matrix_notification.sh +++ b/scripts/ci/notification/matrix_notification.sh @@ -72,7 +72,7 @@ function format_predefined_message() { # Set message environment variables based on CI backend if [[ "$CIRCLECI" = true ]] ; then BRANCH="$CIRCLE_BRANCH" - TAG="$CIRCLE_TAG" + TAG="${CIRCLE_TAG:-}" BUILD_URL="$CIRCLE_BUILD_URL" BUILD_NUM="$CIRCLE_BUILD_NUM" WORKFLOW_NAME="$(circleci_workflow_name)"