From 88386950f978c79879a4fef0fcc4e6793b0bbeaf Mon Sep 17 00:00:00 2001 From: Sid Shukla Date: Mon, 15 Jan 2024 18:19:42 +0100 Subject: [PATCH] Use codecov token for uploading codecov report This is to bypass the ratelimits that impact our coverage report upload sporadically. --- .github/workflows/build-dev.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build-dev.yaml b/.github/workflows/build-dev.yaml index 1fa1f38a8e..1d4ef67150 100644 --- a/.github/workflows/build-dev.yaml +++ b/.github/workflows/build-dev.yaml @@ -35,6 +35,8 @@ jobs: - name: Codecov uses: codecov/codecov-action@v3.1.4 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with: file: ./coverage.xml # Replace with the path to your coverage report fail_ci_if_error: true