From 0aa2ec26671df90d8a918c3e285da694284b51b6 Mon Sep 17 00:00:00 2001 From: onlyjackfrost Date: Fri, 28 Mar 2025 15:06:21 +0800 Subject: [PATCH] CI: add latest tag to ui image --- .github/workflows/ui-release-image-stable.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ui-release-image-stable.yaml b/.github/workflows/ui-release-image-stable.yaml index f22014f38d..0aff2fcc86 100644 --- a/.github/workflows/ui-release-image-stable.yaml +++ b/.github/workflows/ui-release-image-stable.yaml @@ -87,8 +87,9 @@ jobs: password: ${{ secrets.GITHUB_TOKEN }} - name: Create manifest list and push working-directory: /tmp/digests + # tag with input version and latest run: | - TAGS=$(echo "${{ steps.meta.outputs.tags }}" | awk '{printf "--tag %s ", $0}') + TAGS=$(echo "${{ steps.meta.outputs.tags }}" | awk '{printf "--tag %s ", $0}') --tag latest docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \ $(printf '${{ env.WREN_UI_IMAGE }}@sha256:%s ' *) \ $TAGS