Merge branch 'bugfix/trim-tags' into dev
Build Docker Image / Docker-Build (push) Successful in 2m18s
Build Docker Image / Clean-Registry (push) Successful in -18s

This commit is contained in:
2026-04-18 15:44:37 +02:00
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -55,6 +55,7 @@ jobs:
COUNT=$(echo "$TAGS" | wc -l)
if [ $COUNT -gt 10 ]; then
REMAIN=$((COUNT - 10))
echo Found $COUNT tags, dropping all but the last 10
echo "$TAGS" | head -n $REMAIN > /tmp/old_tags
else
echo less than 10 tags, skipping cleanup
+1 -1
View File
@@ -92,7 +92,7 @@
async function onCommit(wrapped){
if (!wrapped.display) {
onEmptyCommit();
} else addTag(wrapped.display);
} else addTag(wrapped.display.trim());
}
function onSelect(dummy){}