Skip to content

Commit 1dad989

Browse files
committed
bump
1 parent f3472f8 commit 1dad989

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/xmllinter.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,10 @@ jobs:
5757
5858
- name: Lint XML
5959
run: |
60-
FILES=$(echo "${{ steps.find-xml.outputs.files }}" | jq -c '.[]')
61-
for item in "${FILES}"; do
62-
echo "${item}"
60+
echo "${{ steps.find-xml.outputs.files }}" | jq -c '.[]' | while read i; do
61+
echo ${i}
6362
done
63+
#FILES=$(echo "${{ steps.find-xml.outputs.files }}" | jq -c '.[]')
64+
#for item in "${FILES}"; do
65+
# echo "${item}"
66+
#done

0 commit comments

Comments
 (0)