Skip to content
New issue

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

Define CODECOV token #6186

Merged
merged 1 commit into from
Feb 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@ jobs:

- uses: codecov/codecov-action@v3
if: ${{ matrix.coverage }}
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

- uses: actions/upload-artifact@v4
if: ${{ matrix.coverage }}
Expand Down
5 changes: 4 additions & 1 deletion RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Create a PR against the main branch with the changes.

## Credentials

The following credentials are required for publishing (and automatically set in Github Actions):
The following credentials are required for building or publishing (and automatically set in Github Actions):

* `GPG_PRIVATE_KEY` and `GPG_PASSWORD`: GPG private key and password for signing.
* `SONATYPE_USER` and `SONATYPE_KEY`: Sonatype username and password.
Expand All @@ -89,6 +89,9 @@ The following credentials are required for publishing (and automatically set in
* To obtain `SONATYPE_USER` and `SONATYPE_KEY` for your account, login
to [oss.sonatype.org](https://oss.sonatype.org/) and navigate to Profile -> User Token -> Access
User Token.
* `CODECOV_TOKEN`: Token used for uploading codecov reports. Each maintainer can obtain their own
credential from codecov as
described [here](https://docs.codecov.com/docs/adding-the-codecov-token#github-actions).

Additionally, credentials are stored with maintainers via
the [OpenTelemetry 1Password](https://opentelemetry.1password.com/signin) account. The following
Expand Down
Loading