Skip to content

Commit

Permalink
build(deps): use token for codecov/codecov-action (#2404)
Browse files Browse the repository at this point in the history
  • Loading branch information
ReenigneArcher authored Apr 11, 2024
1 parent ad66fcb commit 6a01e58
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -510,8 +510,10 @@ jobs:
if: always() && (steps.test_report.outcome == 'success')
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true
files: ./build/coverage.xml
flags: ${{ runner.os }}
token: ${{ secrets.CODECOV_TOKEN }}

- name: Create/Update GitHub Release
if: ${{ needs.setup_release.outputs.create_release == 'true' }}
Expand Down Expand Up @@ -833,8 +835,10 @@ jobs:
if: always() && (steps.test_report.outcome == 'success')
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true
files: ./build/coverage.xml
flags: ${{ runner.os }}-${{ matrix.os_version }}
token: ${{ secrets.CODECOV_TOKEN }}

- name: Create/Update GitHub Release
if: ${{ needs.setup_release.outputs.create_release == 'true' && matrix.release }}
Expand Down Expand Up @@ -1069,8 +1073,10 @@ jobs:
if: always() && (steps.test_report.outcome == 'success')
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true
files: ./build/coverage.xml
flags: ${{ runner.os }}
token: ${{ secrets.CODECOV_TOKEN }}

- name: Package Windows Debug Info
working-directory: build
Expand Down

0 comments on commit 6a01e58

Please sign in to comment.