From 7a3cb2490e706c5442861bd4d8bfd70dbfec0531 Mon Sep 17 00:00:00 2001 From: Renato Westphal Date: Sat, 27 Apr 2024 15:05:12 -0300 Subject: [PATCH] ci: include Codecov token for reliable uploads Reference: https://github.com/codecov/codecov-action/issues/557 Also, set `fail_ci_if_error` to `false` to prevent the CI from failing in case the Codecov servers are unstable or down. Signed-off-by: Renato Westphal --- .github/workflows/ci.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index a4b5d55..a6d34e1 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -84,4 +84,5 @@ jobs: # required for private repositories: # token: ${{ secrets.CODECOV_TOKEN }} files: ./lcov.info - fail_ci_if_error: true + fail_ci_if_error: false + token: ${{ secrets.CODECOV_TOKEN }}