We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents dcc9149 + 9cd83e1 commit 5abbe48Copy full SHA for 5abbe48
1 file changed
.github/workflows/mdbook.yml
@@ -53,8 +53,10 @@ jobs:
53
python-version: '3.13'
54
55
# Ensure the build generated properly
56
- - run: |
57
- if [[ ! -f "${{ env.ARTIFACT_PATH }}/index.html" ]]
+ - name: Ensure build outputs are present
+ shell: bash
58
+ run: |
59
+ if [[ ! -f "${{ env.ARTIFACT_PATH }}/index.html" ]]; then
60
echo "[error] index.html @ [${{ env.ARTIFACT_PATH }}] is missing. Build or path misconfigured";
61
exit 1;
62
fi
0 commit comments