From d713a0886872180836918b0599d2acddb449e8fe Mon Sep 17 00:00:00 2001 From: Manuel Trezza <5673677+mtrezza@users.noreply.github.com> Date: Sat, 24 Aug 2024 03:38:14 +0200 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"