mirror of
https://github.com/gotenberg/gotenberg.git
synced 2026-08-17 12:42:16 +01:00
fix(ci): ignore empty tags in push step
This commit is contained in:
2
.github/actions/build-test-push/push.sh
vendored
2
.github/actions/build-test-push/push.sh
vendored
@@ -34,7 +34,7 @@ echo
|
|||||||
echo "Tag(s) to push:"
|
echo "Tag(s) to push:"
|
||||||
IFS=',' read -ra tags_to_push <<< "$tags"
|
IFS=',' read -ra tags_to_push <<< "$tags"
|
||||||
for tag in "${tags_to_push[@]}"; do
|
for tag in "${tags_to_push[@]}"; do
|
||||||
echo "- $tag"
|
[ -n "$tag" ] && echo "- $tag"
|
||||||
done
|
done
|
||||||
|
|
||||||
if [ "$dry_run" = "true" ]; then
|
if [ "$dry_run" = "true" ]; then
|
||||||
|
|||||||
Reference in New Issue
Block a user