We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95c2f25 commit c9b2a62Copy full SHA for c9b2a62
.github/workflows/docs.yml
@@ -38,21 +38,7 @@ jobs:
38
- name: Build docs
39
shell: bash -l {0}
40
working-directory: docs
41
- run: |
42
- # Build docs with -W (warnings as errors) and --keep-going to see all issues
43
- # Capture exit code but continue to see all errors
44
- set +e
45
- make html SPHINXOPTS="-W --keep-going"
46
- BUILD_EXIT_CODE=$?
47
- set -e
48
-
49
- # Report results
50
- if [ $BUILD_EXIT_CODE -ne 0 ]; then
51
- echo "❌ Documentation build failed with warnings or errors (exit code: $BUILD_EXIT_CODE)"
52
- exit $BUILD_EXIT_CODE
53
- else
54
- echo "✅ Documentation build completed successfully with no warnings or errors"
55
- fi
+ run: make html
56
- name: Upload docs artifact
57
uses: actions/upload-artifact@v4
58
with:
0 commit comments