Search only for xml files.

This commit is contained in:
Patrick Lehmann
2025-01-15 16:09:19 +01:00
parent 530ad7a4a1
commit 7523c4adca

View File

@@ -82,7 +82,7 @@ jobs:
- name: Rename JUnit files and move them all into 'junit/'
run: |
mkdir -p junit
find artifacts/ -type f -path "*TestReportSummary*.xml" -exec sh -c 'cp -v $0 "junit/$(basename $(dirname $0)).$(basename $0)"' {} ';'
find artifacts/ -type f -path "*.xml" -exec sh -c 'cp -v $0 "junit/$(basename $(dirname $0)).$(basename $0)"' {} ';'
tree -pash junit
- name: 🔁 Merge JUnit Unit Test Summaries