From 70b9b67b466c9ac95eb87cc30a2b7b7a8855429e Mon Sep 17 00:00:00 2001 From: Maximilian Roos Date: Sun, 8 Dec 2024 21:53:03 -0800 Subject: [PATCH] Add token to codecov 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