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 089ec2e commit d30cb60
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,12 +101,12 @@ runs:
fi
- name: Process locally
run: |
url=${{ inputs.url }}
yml_path=${{ inputs.codecov_yml_path }}
url='${{ inputs.url }}'
yml_path='${{ inputs.codecov_yml_path }}'
if [[ ${{ inputs.verbose }} != false ]];
if [[ '${{ inputs.verbose }}' != 'false' ]];
then
verbose=${{ inputs.verbose }}
verbose='${{ inputs.verbose }}'
fi
echo ${verbose+--verbose} ${url+--url "$url"} ${yml_path+--codecov-yml-path "$yml_path"} ${name+--name "$name"}
Expand All @@ -117,5 +117,5 @@ runs:
# ${yml_path+--codecov-yml-path "$yml_path"}
# process-test-results \
# --report-type test_results \
# --provider-token ${{ github.token }}
# --provider-token '${{ github.token }}'
shell: bash

0 comments on commit d30cb60

Please sign in to comment.