diff --git a/.github/workflows/regression.yml b/.github/workflows/regression.yml index 1f425d11ffe7f..f6b69c446d25e 100644 --- a/.github/workflows/regression.yml +++ b/.github/workflows/regression.yml @@ -547,6 +547,22 @@ jobs: env: FAILED: ${{ contains(needs.*.result, 'failure') }} steps: + - name: Download capture-artifacts + uses: actions/download-artifact@v4 + with: + name: capture-artifacts + path: downloads + + - name: Display Markdown Summary + run: | + unzip downloads/capture-artifacts -d results + REPORT_MD=results/report.md + if [ -f ${REPORT_MD} ]; then + cat ${REPORT_MD} >> $GITHUB_STEP_SUMMARY + else + echo "Did not find ${REPORT_MD} file." + fi + - name: exit run: | echo "failed=${{ env.FAILED }}"