From 7523c4adca1ce958c27d652f6680e300b52f556f Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Wed, 15 Jan 2025 16:09:19 +0100 Subject: [PATCH] Search only for xml files. --- .github/workflows/PublishTestResults.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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