Skip to content

Commit

Permalink
fix(ci-e2e): fix merging of test results
Browse files Browse the repository at this point in the history
  • Loading branch information
mmuzikar authored and tadayosi committed Sep 6, 2024
1 parent e8bc38a commit 5f9c35b
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,14 +166,6 @@ jobs:
${{ env.REPORT_DIR }}/*.log
${{ env.REPORT_DIR }}/cucumber-reports/*
- name: Archive failed test reports
uses: actions/upload-artifact@v4
if: always()
with:
name: 'test-results'
path: |
results/**/*
publish-results:
runs-on: ubuntu-latest
needs: test
Expand All @@ -183,6 +175,13 @@ jobs:
actions: read
pull-requests: write
steps:
- name: Archive failed test reports
uses: actions/upload-artifact/merge@v4
if: always()
with:
name: 'test-results'
pattern: test-results-*
separate-directories: true
- name: Download Test Results
uses: actions/download-artifact@v4.1.7
with:
Expand Down

0 comments on commit 5f9c35b

Please sign in to comment.