We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb0be96 commit 112117fCopy full SHA for 112117f
.github/workflows/ci.yml
@@ -36,10 +36,7 @@ jobs:
36
run: |
37
npm install -g @umbrelladocs/linkspector
38
echo "linkspector version: $(linkspector --version)"
39
- echo "files:" > .linkspector.yml
40
- echo "${{ steps.changed-files.outputs.changed_files }}" | tr ' ' '\n' | while read -r file; do
41
- echo " - $file" >> .linkspector.yml
42
- done
+ jq '{"files": $ARGS.positional}' --null-input --args ${{ steps.changed-files.outputs.changed_files }} > .linkspector.yml
43
linkspector check --config .linkspector.yml
44
- name: Install Zola
45
0 commit comments