Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/check-image-tags.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,11 @@ jobs:
git checkout "$tag"

- name: Check image tags (last release)
run: npx tsx build/check-image-tags.ts images
run: |
if ! npx tsx build/check-image-tags.ts images; then
echo "::warning::Image tag check against last release failed - templates may reference newer images not yet released"
fi
exit 0

check-image-tags-latest:
name: Check Image Tags (Latest)
Expand Down
Loading