File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 59
59
run : |
60
60
if [[ -n "${{ inputs.runtime-path }}" ]]; then
61
61
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 }}"
63
63
else
64
64
RUNTIME_PATHS="${{ inputs.runtime-paths }}"
65
65
fi
73
73
echo "::error file=$runtimePath::While running $runtimePath"
74
74
fi
75
75
echo "::endgroup::"
76
- done <<<"$(echo "$RUNTIME_PATHS" | yq read - [*] )"
76
+ done <<<"$(echo "$RUNTIME_PATHS" | yq eval '.[]' - )"
77
77
exit $EXIT_STATUS
78
78
79
79
- name : Parse coverage-exclude-paths input
82
82
run : |
83
83
while IFS='' read -r excludePath && [[ -n "$excludePath" ]]; do
84
84
excludePaths="$excludePaths $excludePath"
85
- done <<<"$(echo "${{ inputs.coverage-exclude-paths }}" | yq read - [*] )"
85
+ done <<<"$(echo "${{ inputs.coverage-exclude-paths }}" | yq eval '.[]' - )"
86
86
# Make the parsed paths an output so it can be used by the next step
87
87
echo "::set-output name=paths::$excludePaths"
88
88
You can’t perform that action at this time.
0 commit comments