Skip to content

Commit

Permalink
revert to v3
Browse files Browse the repository at this point in the history
  • Loading branch information
maxulysse committed Oct 24, 2024
1 parent 67269a9 commit 1c06bab
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,14 +164,14 @@ jobs:
uses: mikepenz/action-junit-report@v4
if: success() || failure() # always run even if the previous step fails
with:
report_paths: "TEST-report_${{ matrix.filter }}_${{ matrix.profile }}_${{ matrix.shard }}.xml"
report_paths: "TEST-*.xml"

- name: Upload Test Report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
if: success() || failure() # always run even if the previous step fails
with:
name: junit-test-results
path: "TEST-report_${{ matrix.filter }}_${{ matrix.profile }}_${{ matrix.shard }}.xml"
path: "TEST-*.xml"
retention-days: 1

- name: Clean up
Expand All @@ -194,4 +194,4 @@ jobs:
uses: mikepenz/action-junit-report@v4
with:
commit: ${{github.event.workflow_run.head_sha}}
report_paths: "**/build/test-results/test/TEST-*.xml"
report_paths: "TEST-*.xml"

0 comments on commit 1c06bab

Please sign in to comment.