From 6db646e3900c5de8d92e0aaa3763b881813a4b85 Mon Sep 17 00:00:00 2001 From: Enrico Seiler Date: Wed, 24 Mar 2021 19:54:50 +0100 Subject: [PATCH] [FIX] use absolute paths in codecov --- .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 0d78a51a38..6fb03872cd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -388,8 +388,8 @@ jobs: if: matrix.build == 'coverage' uses: codecov/codecov-action@v1 with: - files: ./seqan3-build/seqan3_coverage - root_dir: ./seqan3 + files: ${{ github.workspace }}/seqan3-build/seqan3_coverage + root_dir: ${{ github.workspace }}/seqan3 - name: Package documentation if: matrix.build == 'documentation'