Skip to content

Commit 14e8b58

Browse files
committed
bump
1 parent 02742c1 commit 14e8b58

2 files changed

Lines changed: 207 additions & 3 deletions

File tree

.github/workflows/xmllinter.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,11 @@ jobs:
5353
5454
echo "files<<EOF" >> $GITHUB_OUTPUT
5555
printf '%s\n' "${FILES[@]}" | jq -R . | jq -s . >> $GITHUB_OUTPUT
56-
#echo "${FILES}" >> $GITHUB_OUTPUT
5756
echo "EOF" >> $GITHUB_OUTPUT
5857
5958
- name: Lint XML
6059
run: |
61-
FILES=`echo ${{ steps.find-xml.outputs.files }} | jq -c -r '.[]'`
62-
for item in ${FILES}; do
60+
FILES=$(echo "${{ steps.find-xml.outputs.files }}" | jq -c '.[]')
61+
for item in "${FILES}"; do
6362
echo "${item}"
6463
done

0 commit comments

Comments
 (0)