Update the CI action fixing incorrect matrix usage

This commit is contained in:
Omar Abdulla
2026-01-06 16:06:20 +03:00
parent cf0c28b468
commit 8ff9568f4d
@@ -90,16 +90,16 @@ runs:
if: ${{ always() }}
run: |
mv ./workdir/*.json report.json
python3 revive-differential-tests/scripts/process-differential-tests-report.py report.json ${{ matrix.platform }}
python3 revive-differential-tests/scripts/process-differential-tests-report.py report.json ${{ inputs['platform'] }}
- name: Upload the Report to the CI
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
if: ${{ always() }}
with:
name: report-${{ matrix.platform }}.md
name: report-${{ inputs['platform'] }}.md
path: report.md
- name: Posting the report as a comment on the PR
uses: marocchino/sticky-pull-request-comment@773744901bac0e8cbb5a0dc842800d45e9b2b405
if: ${{ always() }}
with:
header: diff-tests-report-${{ matrix.platform }}
header: diff-tests-report-${{ inputs['platform'] }}
path: report.md