diff --git a/.github/workflows/PublishTestResults.yml b/.github/workflows/PublishTestResults.yml index cf97de0..77bd474 100644 --- a/.github/workflows/PublishTestResults.yml +++ b/.github/workflows/PublishTestResults.yml @@ -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