We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I keep getting this error:
Codecov token not found. Please provide Codecov token with -t flag.
https://github.com/s3m/s3m/actions/runs/11792881004/job/32847610066#step:7:35
Either using token or env this always happens:
- name: Upload to codecov.io uses: codecov/codecov-action@v4 env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with: files: coverage.lcov flags: rust
or with token:
token
- uses: codecov/codecov-action@v4 with: token: ${{ secrets.CODECOV_TOKEN }} files: ./coverage.lcov flags: rust
The text was updated successfully, but these errors were encountered:
@nbari have you set a CODECOV_TOKEN in your GitHub repository secrets?
I'm seeing it being passed in as blank, it should look like CODECOV_TOKEN: ***
CODECOV_TOKEN: ***
Sorry, something went wrong.
Hi @thomasrockhu-codecov , thanks for your time on this, indeed I do have the token, just in case I updated it with the global token from: https://app.codecov.io/account/github/s3m/org-upload-token
Any idea of how to ensure it is used in the github actions ? (I think I may need to use secrets: inherit)
secrets: inherit
secrets: inherit was missing, thanks it is working now
@nbari ahhh got it, thanks for checking!
thomasrockhu-codecov
No branches or pull requests
I keep getting this error:
https://github.com/s3m/s3m/actions/runs/11792881004/job/32847610066#step:7:35
Either using token or env this always happens:
or with
token
:The text was updated successfully, but these errors were encountered: