Skip to content

Commit 9fc68f2

Browse files
authored
Merge pull request #5579 from AenBleidd/vko_fix_codecov
[CI] Put correct tokens
2 parents 8cdcfdc + 7ec539b commit 9fc68f2

File tree

4 files changed

+7
-0
lines changed

4 files changed

+7
-0
lines changed

.github/workflows/android.yml

+2
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,8 @@ jobs:
189189

190190
- name: Upload coverage report
191191
uses: codecov/codecov-action@84508663e988701840491b86de86b666e8a86bed
192+
env:
193+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
192194
if: ${{ matrix.task == 'jacocoTestReportDebug' }}
193195
with:
194196
fail_ci_if_error: true

.github/workflows/linux.yml

+2
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,8 @@ jobs:
196196

197197
- name: Upload coverage report
198198
uses: codecov/codecov-action@84508663e988701840491b86de86b666e8a86bed
199+
env:
200+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
199201
if: success() && matrix.type == 'unit-test'
200202
with:
201203
fail_ci_if_error: true

.github/workflows/test-report.yml

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030
- name: Download artifacts
3131
uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427
3232
with:
33+
github-token: ${{ secrets.ACTIONS_TEST_REPORT_TOKEN }}
3334
run-id: ${{ github.event.workflow_run.id }}
3435
path: test-reports
3536
- uses: dorny/test-reporter@c40d89d5e987cd80f3a32b3c233556e22bdca958

.github/workflows/windows.yml

+2
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,8 @@ jobs:
159159
- name: Upload coverage report
160160
if: success() && matrix.platform == 'x64' && matrix.type == 'msbuild'
161161
uses: codecov/codecov-action@84508663e988701840491b86de86b666e8a86bed
162+
env:
163+
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
162164
with:
163165
fail_ci_if_error: true
164166
verbose: false

0 commit comments

Comments
 (0)