File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -43,21 +43,21 @@ jobs:
4343 echo "config<<EOF";
4444 cat "${{ inputs.config_file }}";
4545 echo "EOF";
46- } >> $GITHUB_OUTPUT
46+ } >> " $GITHUB_OUTPUT"
4747 else
4848 echo "config={}" >> $GITHUB_OUTPUT
4949 fi
5050
5151 - name : Substract ignore-list from config
5252 id : read-ignore
5353 run : |
54- IGNORE=$(echo '${{ toJSON(fromJSON(steps.read-json.outputs.config).ignore) }}' | jq -c '.')
54+ IGNORE=" $(echo '${{ toJSON(fromJSON(steps.read-json.outputs.config).ignore) }}' | jq -c '.')"
5555 echo "ignore=${IGNORE}" >> $GITHUB_OUTPUT
5656
5757 - name : Find all XML-files in this repository
5858 id : find-xml
5959 run : |
60- filelist=$(find . -type f -iname "*.xml" | jo -a)
60+ filelist=" $(find . -type f -iname "*.xml" | jo -a)"
6161 echo "filelist=${filelist}" >> $GITHUB_OUTPUT
6262
6363 - name : Lint XML
You can’t perform that action at this time.
0 commit comments