Simplify publish-report action by removing unnecessary variable assignment in JUnit file processing.

This commit is contained in:
2026-06-27 18:24:56 +02:00
parent 053979d4e1
commit 84c5295345
@@ -16,7 +16,6 @@ runs:
for f in **/target/*-reports/TEST-*.xml; do
base="$(basename "$f")"
short="${base#TEST-}"
short="${short%.xml}"
cp "$f" "junit-short/${short}"
done