mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-07 19:47:25 +00:00
fix: use double quotes
This commit is contained in:
parent
453bbab479
commit
7bee4bb711
1 changed files with 1 additions and 1 deletions
|
|
@ -182,7 +182,7 @@ runs:
|
|||
CC_BRANCH=${{ inputs.override_branch }}
|
||||
|
||||
is_Fork=$(${{ github.event.pull_request.head.repo.full_name }} != ${{ github.repository }})
|
||||
if [ -z $CC_BRANCH ] && [ -z $CODECOV_TOKEN ] && [ "$is_fork" == "true" ];
|
||||
if [ -z "$CC_BRANCH" ] && [ -z "$CODECOV_TOKEN" ] && [ "$is_fork" == "true" ];
|
||||
then
|
||||
echo -e "\033[0;32m==>\033[0m Fork detected, tokenless uploading used"
|
||||
TOKENLESS=${{ github.event.pull_request.head.label }};
|
||||
|
|
|
|||
Loading…
Reference in a new issue