From 8ff9568f4da5254b82b94cf4717b1e5a62458cbf Mon Sep 17 00:00:00 2001 From: Omar Abdulla Date: Tue, 6 Jan 2026 16:06:20 +0300 Subject: [PATCH] Update the CI action fixing incorrect matrix usage --- .github/actions/run-differential-tests/action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/run-differential-tests/action.yml b/.github/actions/run-differential-tests/action.yml index b806250..c69daf9 100644 --- a/.github/actions/run-differential-tests/action.yml +++ b/.github/actions/run-differential-tests/action.yml @@ -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