Skip to content

Commit 6354645

Browse files
committed
fix: Use GH Actions task to download artifacts
1 parent db7b86e commit 6354645

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/test-report.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,17 @@ jobs:
1616
runs-on: ubuntu-24.04
1717

1818
steps:
19-
# https://github.com/dorny/test-reporter/issues/363#issuecomment-2381625959.
19+
- name: Download Test And Coverage Results
20+
uses: actions/download-artifact@v5
21+
with:
22+
pattern: Testcontainers*
23+
24+
- name: List Artifacts
25+
run: ls -R ${{ github.workspace }}
26+
2027
- name: Publish Test Report
2128
uses: dorny/[email protected]
2229
with:
23-
artifact: /Testcontainers.*/
24-
name: Test Report
30+
name: test-report
2531
path: '*.trx'
2632
reporter: dotnet-trx

0 commit comments

Comments
 (0)