Skip to content

Commit

Permalink
chore(codecov): fixing an issue on release 4.6.0 action codecov (#943)
Browse files Browse the repository at this point in the history
oidc does not work on PR from a fork (issue: codecov/codecov-action#1594)
  • Loading branch information
andreascorti authored Oct 9, 2024
1 parent b2a3948 commit cad0845
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
files: core/coverage/lcov.info,core-bootstrap/coverage/lcov.info,angular/headless/coverage/lcov.info,svelte/preprocess/coverage/lcov.info
flags: unit
disable_search: true
use_oidc: true
use_oidc: ${{ !(github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork) }}
- run: npm run -w verdaccio verdaccio-publish
- if: inputs.version != ''
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
with:
directory: coverage
flags: e2e
use_oidc: true
use_oidc: ${{ !(github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork) }}
- uses: actions/setup-node@v4
with:
node-version: '20.x'
Expand Down

0 comments on commit cad0845

Please sign in to comment.