From 43fd9787f6e1566868fe462782a9afc2edb8f8c4 Mon Sep 17 00:00:00 2001 From: Dan Ditomaso Date: Sun, 17 Aug 2025 11:17:22 -0400 Subject: [PATCH] Update .github/workflows/release-web.yml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .github/workflows/release-web.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-web.yml b/.github/workflows/release-web.yml index 45f061f1..e8f14687 100644 --- a/.github/workflows/release-web.yml +++ b/.github/workflows/release-web.yml @@ -118,7 +118,12 @@ jobs: else echo "list=${{ steps.meta.outputs.tag }}" >> "$GITHUB_OUTPUT" fi - echo "Using image tags: ${{ steps.tags.outputs.list }}" + TAGS="latest, ${{ steps.meta.outputs.tag }}" + else + TAGS="${{ steps.meta.outputs.tag }}" + fi + echo "list=$TAGS" >> "$GITHUB_OUTPUT" + echo "Using image tags: $TAGS" - name: Build Container Image id: build-container