diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d2a8dd4b8..ab8d0e5d6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -94,11 +94,11 @@ jobs: - name: Convert Xcode test results for code coverage upload if: matrix.script == 'test:ios' env: - COVERAGE_PATH: build/${{ matrix.script }}-coverage.xml + COVERAGE_PATH: ${GITHUB_WORKSPACE}/build/${{ matrix.script }}-coverage.xml run: | echo COVERAGE_PATH=${COVERAGE_PATH//:/-} >> $GITHUB_ENV echo "TEST_RESULTS: $TEST_RESULTS" - echo "COVERAGE_PATH: $COVERAGE_PATH" + echo "COVERAGE_PATH: ${{ env.COVERAGE_PATH }}" set -o pipefail && \ xcresultparser --output-format cobertura \ "$TEST_RESULTS" >"$COVERAGE_PATH"