File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 5959 run : |
6060 if [[ -n "${{ inputs.runtime-path }}" ]]; then
6161 echo "::warning::The runtime-path input is deprecated. Please use runtime-paths instead."
62- RUNTIME_PATHS="${{ inputs.runtime-path }}"
62+ RUNTIME_PATHS="- ${{ inputs.runtime-path }}"
6363 else
6464 RUNTIME_PATHS="${{ inputs.runtime-paths }}"
6565 fi
7373 echo "::error file=$runtimePath::While running $runtimePath"
7474 fi
7575 echo "::endgroup::"
76- done <<<"$(echo "$RUNTIME_PATHS" | yq read - [*] )"
76+ done <<<"$(echo "$RUNTIME_PATHS" | yq eval '.[]' - )"
7777 exit $EXIT_STATUS
7878
7979 - name : Parse coverage-exclude-paths input
8282 run : |
8383 while IFS='' read -r excludePath && [[ -n "$excludePath" ]]; do
8484 excludePaths="$excludePaths $excludePath"
85- done <<<"$(echo "${{ inputs.coverage-exclude-paths }}" | yq read - [*] )"
85+ done <<<"$(echo "${{ inputs.coverage-exclude-paths }}" | yq eval '.[]' - )"
8686 # Make the parsed paths an output so it can be used by the next step
8787 echo "::set-output name=paths::$excludePaths"
8888
You can’t perform that action at this time.
0 commit comments