Skip to content

Commit

Permalink
chore(ci): display regression report in summary (#22284)
Browse files Browse the repository at this point in the history
* chore(ci): display regression report in summary

* fix path

* fix path
  • Loading branch information
pront authored Jan 22, 2025
1 parent 9161ca7 commit 082a154
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/regression.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}"
Expand Down

0 comments on commit 082a154

Please sign in to comment.