diff --git a/.github/workflows/core-coverage.yml b/.github/workflows/core-coverage.yml index 2925980e52..a4c3030099 100644 --- a/.github/workflows/core-coverage.yml +++ b/.github/workflows/core-coverage.yml @@ -27,10 +27,10 @@ jobs: path: tmp/coverage/integration name: integration-coverage - name: merge coverages - if: ${{ unit_test_report == 'true' && integration_test_report == 'true' }} + if: ${{ inputs.unit_test_report == 'true' && inputs.integration_test_report == 'true' }} run: make core_coverage_reports - name: publish coverage - if: ${{ unit_test_report == 'true' && integration_test_report == 'true' }} + if: ${{ inputs.unit_test_report == 'true' && inputs.integration_test_report == 'true' }} uses: codecov/codecov-action@v5.4.0 with: file: full-profile.cov