From 0e27cb972c5d3bc8876e6a1891c2460066ba6dd9 Mon Sep 17 00:00:00 2001 From: tuntoja Date: Mon, 8 Apr 2024 17:04:39 +0200 Subject: [PATCH] fix --- .github/actions/release/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/release/action.yml b/.github/actions/release/action.yml index aa054c8b2a4..bac3ccfef10 100644 --- a/.github/actions/release/action.yml +++ b/.github/actions/release/action.yml @@ -229,7 +229,7 @@ runs: done # Build JSON structure with released versions - JSON_TAGS=$(jq -n '{componentList:$ARGS.positional}' --args "${NEW_RELEASE_TAGS[@]}") + JSON_TAGS=$(jq -n '{componentList:$ARGS.positional}' --args "${NEW_STABLE_TAGS[@]}") JSON_VERSION_INFO=$(jq -n --arg majorVersion "$MAJOR_VERSION" --arg scopeVersion "$SCOPE_VERSION" '$ARGS.named' ) RELEASE_JSON=$(echo "$JSON_VERSION_INFO" | jq -c --argjson json_tags "$JSON_TAGS" '. += $json_tags')