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