We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d64cd7 commit a8f5202Copy full SHA for a8f5202
1 file changed
.github/workflows/link-checker.yml
@@ -78,7 +78,9 @@ jobs:
78
'
79
) >> "$GITHUB_STEP_SUMMARY"
80
cat log
81
- echo "exit-code=$(cat exit-code)" >> "$GITHUB_OUTPUT"
+ exit_code=$(cat exit-code)
82
+ echo "exit-code=$exit_code" >> "$GITHUB_OUTPUT"
83
+ exit $exit_code
84
env:
85
linkcheck: ${{ steps.setup.outputs.linkcheck }}
86
arguments: https://${{ vars.gh_pages_site || 'docs.check-spelling.dev' }}
0 commit comments