Skip to content

Commit 8b0a7ca

Browse files
committed
Remove quotes
In the case of a pull request made from a fork, secrets are not accessible, and this resolved to null. The codecov action seems to interpret null as no secret provided, while it interprets the empty string as an invalid token, making the whole tokenless upload invalid.
1 parent 8ac6a13 commit 8b0a7ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,4 +381,4 @@ jobs:
381381
with:
382382
directory: reports
383383
env:
384-
CODECOV_TOKEN: "${{ secrets.CODECOV_TOKEN }}"
384+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)