Adjusted filter expression in find for PublishTestResults.

This commit is contained in:
Patrick Lehmann
2024-06-16 23:35:06 +02:00
parent ae13aa2dff
commit d4afc820ab
7 changed files with 10 additions and 10 deletions

View File

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