From 14931d2a8668742fd23c8a3ceb9706d817ff6f1c Mon Sep 17 00:00:00 2001 From: Li Wang Date: Fri, 19 Dec 2025 17:30:48 +0800 Subject: [PATCH] [CI] Fix image merge bug (#5197) ### What this PR does / why we need it? Some tiny bugfix for https://github.com/vllm-project/vllm-ascend/pull/5175 Signed-off-by: wangli --- .github/workflows/_pr_image_build.yaml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/_pr_image_build.yaml b/.github/workflows/_pr_image_build.yaml index 3ac4003a..5a0b1213 100644 --- a/.github/workflows/_pr_image_build.yaml +++ b/.github/workflows/_pr_image_build.yaml @@ -166,7 +166,12 @@ jobs: DIGESTS=$(printf "$IMAGE@sha256:%s " $(ls ${{ runner.temp }}/digests)) echo "Digests: $DIGESTS" - echo "Current tags: $TAGS" - docker buildx imagetools create \ - -t TAGS \ - $DIGESTS + echo "Current tags:" + echo "$TAGS" + + for tag in $TAGS; do + echo "Creating tag $tag" + docker buildx imagetools create \ + -t "$tag" \ + $DIGESTS + done