From 50fa8f0b46c87d2f03b63cc77dfd5c21d879615b Mon Sep 17 00:00:00 2001 From: Sid Shukla Date: Tue, 16 Jan 2024 14:06:41 +0100 Subject: [PATCH] Use codecov token for uploading codecov report (#362) 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