We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02742c1 commit 14e8b58Copy full SHA for 14e8b58
2 files changed
.github/workflows/xmllinter.yml
@@ -53,12 +53,11 @@ jobs:
53
54
echo "files<<EOF" >> $GITHUB_OUTPUT
55
printf '%s\n' "${FILES[@]}" | jq -R . | jq -s . >> $GITHUB_OUTPUT
56
- #echo "${FILES}" >> $GITHUB_OUTPUT
57
echo "EOF" >> $GITHUB_OUTPUT
58
59
- name: Lint XML
60
run: |
61
- FILES=`echo ${{ steps.find-xml.outputs.files }} | jq -c -r '.[]'`
62
- for item in ${FILES}; do
+ FILES=$(echo "${{ steps.find-xml.outputs.files }}" | jq -c '.[]')
+ for item in "${FILES}"; do
63
echo "${item}"
64
done
0 commit comments