We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b86fc1a commit bd7e946Copy full SHA for bd7e946
1 file changed
.github/workflows/xmllinter.yml
@@ -52,12 +52,13 @@ jobs:
52
done
53
54
echo "files<<EOF" >> $GITHUB_OUTPUT
55
- echo "${FILES}" >> $GITHUB_OUTPUT
+ 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: |
- FILES=${{ steps.read-json.outputs.files }}
61
+ FILES=${{ fromJSON(steps.read-json.outputs.files) }}
62
for item in ${FILES}; do
63
echo "${item}"
64
0 commit comments