diff --git a/.github/workflows/testing-results.yml b/.github/workflows/testing-results.yml index 17b38409aa..f91ae48aa7 100644 --- a/.github/workflows/testing-results.yml +++ b/.github/workflows/testing-results.yml @@ -25,14 +25,25 @@ jobs: path: artifacts github-token: ${{ secrets.GITHUB_TOKEN }} - - name: Publish Test Results + - name: Publish E2E Test Results uses: EnricoMi/publish-unit-test-result-action@v2 with: - check_name: "${{ github.event.workflow.name }} Published Test Results" + check_name: "Published E2E Test Results" compare_to_earlier_commit: false test_changes_limit: 0 fail_on: "errors" commit: ${{ github.event.workflow_run.head_sha }} event_file: artifacts/Event File/event.json event_name: ${{ github.event.workflow_run.event }} - files: "artifacts/**/*.xml" + files: "artifacts/**/junit-e2e-test.xml" + - name: Publish Unit Test Results + uses: EnricoMi/publish-unit-test-result-action@v2 + with: + check_name: "Published Unit Test Results" + compare_to_earlier_commit: false + test_changes_limit: 0 + fail_on: "errors" + commit: ${{ github.event.workflow_run.head_sha }} + event_file: artifacts/Event File/event.json + event_name: ${{ github.event.workflow_run.event }} + files: "artifacts/**/junit-unit-test.xml" diff --git a/.github/workflows/testing.yaml b/.github/workflows/testing.yaml index 3bbb003282..3f5686df3c 100644 --- a/.github/workflows/testing.yaml +++ b/.github/workflows/testing.yaml @@ -67,7 +67,7 @@ jobs: with: name: Unit Test Results path: | - junit.xml + junit-unit-test.xml - name: Generate code coverage artifacts uses: actions/upload-artifact@v4 with: @@ -86,6 +86,8 @@ jobs: - version: 1.28 latest: false - version: 1.29 + latest: false + - version: '1.30' latest: true name: Run end-to-end tests runs-on: ubuntu-latest @@ -134,7 +136,7 @@ jobs: with: name: E2E Test Results (k8s ${{ matrix.kubernetes.version }}) path: | - junit.xml + junit-e2e-test.xml - name: Upload e2e-controller logs uses: actions/upload-artifact@v4 with: @@ -179,4 +181,4 @@ jobs: file: full-coverage.out fail_ci_if_error: false env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} \ No newline at end of file + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}