From 5b363a14e64a4ecf32d903be4f8f67dd3d27b79d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Orhun=20Parmaks=C4=B1z?= Date: Sun, 9 Jun 2024 22:58:46 +0300 Subject: [PATCH] refactor(ci): manually upload codecov report --- .github/workflows/ci.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f81c4477..4bb36342 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,13 +37,10 @@ jobs: env: OUT_DIR: target - name: Upload reports to codecov - uses: codecov/codecov-action@v4 - with: - name: code-coverage-report - file: lcov.info - flags: unit-tests - fail_ci_if_error: true - verbose: true + run: | + curl -Os https://uploader.codecov.io/latest/linux/codecov + chmod +x codecov + ./codecov -t ${CODECOV_TOKEN} -f lcov.info env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}