Skip to content

Commit 7b48a91

Browse files
committed
fix file name
1 parent e6653d5 commit 7b48a91

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -93,12 +93,10 @@ jobs:
9393
shell: bash
9494
run: |
9595
which xsltproc || sudo apt-get install -y xsltproc
96-
find . -name '*.xml' | while read -r xml_file; do
97-
echo "Fixing $xml_file"
98-
tmp_file="$(mktemp)"
99-
xsltproc --output "$tmp_file" ".github/workflows/add_final_status.xsl" "$xml_file"
100-
mv "$tmp_file" "$xml_file"
101-
done
96+
echo "Fixing target/nextest/ci/junit.xml"
97+
tmp_file="$(mktemp)"
98+
xsltproc --output "$tmp_file" ".github/workflows/add_final_status.xsl" "target/nextest/ci/junit.xml"
99+
mv "$tmp_file" "target/nextest/ci/junit.xml"
102100
103101
- name: Upload test results to Datadog
104102
if: success() || failure()

0 commit comments

Comments
 (0)