We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3472f8 commit 1dad989Copy full SHA for 1dad989
1 file changed
.github/workflows/xmllinter.yml
@@ -57,7 +57,10 @@ jobs:
57
58
- name: Lint XML
59
run: |
60
- FILES=$(echo "${{ steps.find-xml.outputs.files }}" | jq -c '.[]')
61
- for item in "${FILES}"; do
62
- echo "${item}"
+ echo "${{ steps.find-xml.outputs.files }}" | jq -c '.[]' | while read i; do
+ echo ${i}
63
done
+ #FILES=$(echo "${{ steps.find-xml.outputs.files }}" | jq -c '.[]')
64
+ #for item in "${FILES}"; do
65
+ # echo "${item}"
66
+ #done
0 commit comments