From 30235b8aa364b42dda9a2c16a35cf6194be1fb3e Mon Sep 17 00:00:00 2001 From: EXPLOSION Date: Mon, 26 Jun 2023 23:22:19 +0900 Subject: [PATCH] Fix tokenless uploads by hardcoding token... --- .github/workflows/ci.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 42e872be34..480398a1f0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -81,7 +81,8 @@ jobs: uses: codecov/codecov-action@v3 with: directory: empty - name: 'Windows (${{ matrix.python }}, ${{ matrix.arch }}${{ matrix.extra_name }})' + token: 87cefb17-c44b-4f2f-8b30-1fff5769ce46 + name: Windows (${{ matrix.python }}, ${{ matrix.arch }}${{ matrix.extra_name }}) flags: Windows,${{ matrix.python }} Ubuntu: @@ -131,7 +132,8 @@ jobs: uses: codecov/codecov-action@v3 with: directory: empty - name: 'Ubuntu (${{ matrix.python }}${{ matrix.extra_name }})' + token: 87cefb17-c44b-4f2f-8b30-1fff5769ce46 + name: Ubuntu (${{ matrix.python }}${{ matrix.extra_name }}) flags: Ubuntu,${{ matrix.python }} macOS: @@ -166,7 +168,8 @@ jobs: uses: codecov/codecov-action@v3 with: directory: empty - name: 'macOS (${{ matrix.python }})' + token: 87cefb17-c44b-4f2f-8b30-1fff5769ce46 + name: macOS (${{ matrix.python }}) flags: macOS,${{ matrix.python }} # https://github.com/marketplace/actions/alls-green#why