From 84975efdc7af98db7d7db4267f772eb1bdbb3c2f Mon Sep 17 00:00:00 2001 From: Dennis Fang Date: Tue, 14 Oct 2025 15:36:24 -0700 Subject: [PATCH] dont strip leading 0 in tag name --- .github/workflows/build-base.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-base.yml b/.github/workflows/build-base.yml index 86c1668..c720c0b 100644 --- a/.github/workflows/build-base.yml +++ b/.github/workflows/build-base.yml @@ -111,8 +111,8 @@ jobs: matrix-step-name: build matrix-key: ${{ inputs.matrix_key }} outputs: |- - version: ${{ needs.build.outputs.docker_version }} - tag: ${{ needs.build.outputs.docker_tag }} + version: "${{ needs.build.outputs.docker_version }}" + tag: "${{ needs.build.outputs.docker_tag }}" outputs: version: ${{ fromJson(steps.out.outputs.result).version }}