We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 174a805 commit e45348eCopy full SHA for e45348e
1 file changed
action.yml
@@ -1,3 +1,5 @@
1
+# xsltproc --xinclude XSLTLint.xslt $INPUT_XSLT_FILE >> ${{ runner.temp }}/report.txt
2
+# cat ${{ runner.temp }}/report.txt >> "$GITHUB_OUTPUT"
3
name: 'XSLT Linter'
4
description: 'Check an XSLT stylesheet for some common mistakes'
5
inputs:
@@ -10,7 +12,8 @@ runs:
10
12
- name: Check file
11
13
id: linting
14
shell: bash
- run: xsltproc --xinclude XSLTLint.xslt $INPUT_XSLT_FILE | echo "report=$@" >> $GITHUB_OUTPUT
15
+ run: |
16
+ xsltproc --xinclude XSLTLint.xslt $INPUT_XSLT_FILE | echo "report=$@" >> "$GITHUB_OUTPUT"
17
env:
18
INPUT_XSLT_FILE: ${{ inputs.xslt-file }}
19
- name: Report linting status
0 commit comments