From 0535653c5f09637f86fa2486b0ece31900c9d2af Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Fri, 10 May 2024 09:58:54 -0400 Subject: [PATCH] ci: fix coverage artifact path --- .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 dfed764..5895d20 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -199,14 +199,14 @@ jobs: uses: actions/download-artifact@v4 with: name: coverage-${{ matrix.build_os }} - path: build + path: _coverage - name: Upload coverage uses: codecov/codecov-action@v4 with: disable_search: true fail_ci_if_error: true - files: ./build/coverage.xml + files: ./_coverage/coverage.xml flags: ${{ matrix.flag }} token: ${{ secrets.CODECOV_TOKEN }} verbose: true