From 2f487d2e83ba78311b46339146b70778bb7e09aa Mon Sep 17 00:00:00 2001 From: Julien Neuhart Date: Thu, 14 Aug 2025 21:37:41 +0200 Subject: [PATCH] fix(ci): ignore empty tags in push step --- .github/actions/build-test-push/push.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/build-test-push/push.sh b/.github/actions/build-test-push/push.sh index 599346f1..f6744598 100755 --- a/.github/actions/build-test-push/push.sh +++ b/.github/actions/build-test-push/push.sh @@ -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