From 883523618122baf8e9f6c13ad2e764362b2caf52 Mon Sep 17 00:00:00 2001 From: wjunLu <135617475+wjunLu@users.noreply.github.com> Date: Sun, 1 Mar 2026 12:20:57 +0800 Subject: [PATCH] [Image] Fix docker image merge tag settings (#6884) ### What this PR does / why we need it? Fix docker image merge tag settings, to use tag as the branch name. - vLLM version: v0.16.0 - vLLM main: https://github.com/vllm-project/vllm/commit/15d76f74e2fdb12a95ea00f0ca283acf6219a2b7 Signed-off-by: wjunLu --- .github/workflows/_schedule_image_build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/_schedule_image_build.yaml b/.github/workflows/_schedule_image_build.yaml index 998051cd..60bb9a29 100644 --- a/.github/workflows/_schedule_image_build.yaml +++ b/.github/workflows/_schedule_image_build.yaml @@ -178,7 +178,7 @@ jobs: # which follow the rule from vLLM with prefix v # TODO(yikun): the post release might be considered as latest release tags: | - type=branch,suffix=${{ env.SUFFIX }} + type=ref,event=branch,suffix=${{ env.SUFFIX }} type=pep440,pattern={{raw}},suffix=${{ env.SUFFIX }} type=schedule,pattern=main,suffix=${{ env.SUFFIX }} type=raw,value=${{ inputs.workflow_dispatch_tag }},enable=${{ github.event_name == 'workflow_dispatch' }},suffix=${{ env.SUFFIX }}