Skip to content

Commit bd7e946

Browse files
committed
bump
1 parent b86fc1a commit bd7e946

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/xmllinter.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,13 @@ jobs:
5252
done
5353
5454
echo "files<<EOF" >> $GITHUB_OUTPUT
55-
echo "${FILES}" >> $GITHUB_OUTPUT
55+
printf '%s\n' "${FILES[@]}" | jq -R . | jq -s . >> $GITHUB_OUTPUT
56+
#echo "${FILES}" >> $GITHUB_OUTPUT
5657
echo "EOF" >> $GITHUB_OUTPUT
5758
5859
- name: Lint XML
5960
run: |
60-
FILES=${{ steps.read-json.outputs.files }}
61+
FILES=${{ fromJSON(steps.read-json.outputs.files) }}
6162
for item in ${FILES}; do
6263
echo "${item}"
6364
done

0 commit comments

Comments
 (0)