From e576f753985c77568a407c66ad86d69b702447f1 Mon Sep 17 00:00:00 2001 From: elseif Date: Thu, 16 Jul 2026 13:15:39 +0800 Subject: [PATCH] modified: .github/workflows/build_docker.yml --- .github/workflows/build_docker.yml | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) diff --git a/.github/workflows/build_docker.yml b/.github/workflows/build_docker.yml index 0f8f6bc..74110a3 100644 --- a/.github/workflows/build_docker.yml +++ b/.github/workflows/build_docker.yml @@ -23,11 +23,7 @@ jobs: if [ -n "$SPECIFIED_VERSION" ]; then MATRIX=$(jq -c -n ' [ - { - "name": "specified", - "version": $SPECIFIED_VERSION, - "channel": "specified" - } + { "name": "specified", "version": $SPECIFIED_VERSION, "channel": "specified"} ] ' --arg SPECIFIED_VERSION "$SPECIFIED_VERSION") else @@ -47,16 +43,8 @@ jobs: fi MATRIX=$(jq -c -n ' [ - { - "name": "long-term", - "version": $LONG_TERM, - "channel": "long-term" - }, - { - "name": "stable", - "version": $STABLE, - "channel": "stable" - } + {name: "long-term", version: $LONG_TERM, channel: "long-term"}, + {name: "stable", version: $STABLE, channel: "stable"} ] ' --arg LONG_TERM "$LONG_TERM" --arg STABLE "$STABLE") fi