fix(ci): ignore empty tags in push step

This commit is contained in:
Julien Neuhart
2025-08-14 21:37:41 +02:00
parent 1ff4b3a4fc
commit 2f487d2e83

View File

@@ -34,7 +34,7 @@ echo
echo "Tag(s) to push:"
IFS=',' read -ra tags_to_push <<< "$tags"
for tag in "${tags_to_push[@]}"; do
echo "- $tag"
[ -n "$tag" ] && echo "- $tag"
done
if [ "$dry_run" = "true" ]; then