From 8ba0be71da410ac2ef98118f1e728df5b1eee176 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?JB=20Onofr=C3=A9?= Date: Mon, 20 Apr 2026 15:17:54 +0200 Subject: [PATCH] Fix CI Test Results workflow failing to find event.json dawidd6/action-download-artifact@v20 with name_is_regexp creates per-artifact subdirectories, so the event file lands at event/event-file-ubuntu-24.04/event.json rather than event/event.json. Download only the ubuntu-24.04 artifact by exact name and update the event_file path accordingly. --- .github/workflows/ci-test-results.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-test-results.yml b/.github/workflows/ci-test-results.yml index c9f71b72e98..2348967fa47 100644 --- a/.github/workflows/ci-test-results.yml +++ b/.github/workflows/ci-test-results.yml @@ -50,15 +50,14 @@ jobs: uses: dawidd6/action-download-artifact@v20 with: run_id: ${{ github.event.workflow_run.id }} - name: event-file-.* - name_is_regexp: true + name: event-file-ubuntu-24.04 path: event - name: Publish Test Results uses: EnricoMi/publish-unit-test-result-action@v2 with: commit: ${{ github.event.workflow_run.head_sha }} - event_file: event/event.json + event_file: event/event-file-ubuntu-24.04/event.json event_name: ${{ github.event.workflow_run.event }} large_files: true report_individual_runs: true