From e3196b7dbe5d496412ca10da75bbbb627e90922c Mon Sep 17 00:00:00 2001 From: Todd Ekenstam <3845995+tekenstam@users.noreply.github.com> Date: Fri, 19 Apr 2024 20:20:28 -0700 Subject: [PATCH] Fix codecov Add codecov token to env --- .github/workflows/ci.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 211a424..41dfd71 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -44,11 +44,12 @@ jobs: - name: Codecov uses: codecov/codecov-action@v4 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with: file: ./coverage.txt # optional flags: unittests # optional name: codecov-umbrella # optional - token: ${{ secrets.CODECOV_TOKEN }} # required fail_ci_if_error: true # optional (default = false) - name: Set up QEMU