Skip to content

Commit

Permalink
Utilize CODECOV_TOKEN secret to make codecov upload step less likely to
Browse files Browse the repository at this point in the history
fail.
  • Loading branch information
Kami committed Aug 2, 2023
1 parent 80fd01b commit e26f012
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,9 @@ jobs:
- name: Upload Coverage to codecov.io
uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3.1.4
with:
# We utilize secret for more realiable builds. Without secret being set, upload step
# fails fairly often.
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
verbose: true

Expand Down

0 comments on commit e26f012

Please sign in to comment.