Browse Source

Update .github/workflows/release-web.yml

Co-authored-by: Copilot <[email protected]>
pull/783/head
Dan Ditomaso 11 months ago
committed by GitHub
parent
commit
43fd9787f6
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 7
      .github/workflows/release-web.yml

7
.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

Loading…
Cancel
Save