We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67aa069 commit 88e78ecCopy full SHA for 88e78ec
.github/workflows/xmllinter.yml
@@ -56,12 +56,17 @@ jobs:
56
echo "files<<EOF" >> $GITHUB_OUTPUT
57
echo "${FILES}" >> $GITHUB_OUTPUT
58
echo "EOF" >> $GITHUB_OUTPUT
59
+ # iterate through the Bash array
60
+ for item in "${FILES[@]}"; do
61
+ echo "${item}"
62
+ done
63
64
- name: Lint XML
65
run: |
66
#echo ${{ contains(fromJSON(steps.read-json.outputs.config).ignore, 'bullshit') }}
67
#echo ${{ contains(fromJSON(steps.read-json.outputs.config).ignore, '/path/to/file') }}
- for fn in ${{ steps.find-xml.outputs.files }}; do
- echo "the next file is $fn"
- cat $fn
- done
68
+ #for fn in ${{ steps.find-xml.outputs.files }}; do
69
+ # echo "the next file is $fn"
70
+ # cat $fn
71
+ #done
72
+
0 commit comments