Skip to content

Commit

Permalink
testing
Browse files Browse the repository at this point in the history
Signed-off-by: joseph-sentry <[email protected]>
  • Loading branch information
joseph-sentry committed May 9, 2024
1 parent d30cb60 commit 60c896f
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,15 +101,21 @@ runs:
fi
- name: Process locally
run: |
url='${{ inputs.url }}'
yml_path='${{ inputs.codecov_yml_path }}'
if [[ -z '${{ inputs.url }}' ]]; then
url='${{ inputs.url }}'
fi
if [[ -z '${{ inputs.codecov_yml_path }}' ]];
then
yml_path='${{ inputs.codecov_yml_path }}'
fi
if [[ '${{ inputs.verbose }}' != 'false' ]];
then
verbose='${{ inputs.verbose }}'
fi
echo ${verbose+--verbose} ${url+--url "$url"} ${yml_path+--codecov-yml-path "$yml_path"} ${name+--name "$name"}
echo ${verbose+--verbose} ${url+--url "$url"} ${yml_path+--codecov-yml-path "$yml_path"}
# ./codecov \
# ${verbose+--verbose} \
Expand Down

0 comments on commit 60c896f

Please sign in to comment.