Description
I am getting a super generic HTTP 500 error returned from codecov when I try to upload my coverage report via github actions codecov-action. This was not at all helpful in debugging the problem, and I would have expected an authentication error. There was an error in my actions .yml file
with:
37 token: $${{ secrets.codecov_token }}
38 files: ./coverage.xml
should have been
with:
37 token: ${{ secrets.codecov_token }}
38 files: ./coverage.xml
Commit SHAs
51426688c328af0871c4601c19b95ffd5fbcb0fe
Repository
CI/CD or Build URL
Github actions build #16/17:
Uploader
codecov-action available on github:
Codecov Output
1121Error: Codecov failed with the following error: The process ‘/usr/bin/bash’ failed with exit code 1
(only put one line as I am restricted to the number of links I can post - which is pretty silly if what you want is the full output. All prior output succeeded.)
Expected Results
Authentication error / bad token error
Actual Results
HTTP 500 Error