From f9ed7275ce5cd15e2fc92a88ec352a16ef24fa3c Mon Sep 17 00:00:00 2001 From: Maximilian Roos <5635139+max-sixty@users.noreply.github.com> Date: Sun, 8 Dec 2024 22:22:49 -0800 Subject: [PATCH] Add token to codecov (#9865) Without this, we can't upload on `main`, I think. I added a token into our Actions Secrets. ref https://github.com/pydata/xarray/issues/9860 --- .github/workflows/ci.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b0996acf6fe..eb7d2c858af 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -160,6 +160,8 @@ jobs: - name: Upload code coverage to Codecov uses: codecov/codecov-action@v5.0.7 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with: file: ./coverage.xml flags: unittests