We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f109350 commit cceb247Copy full SHA for cceb247
.github/workflows/docs.yml
@@ -11,10 +11,10 @@ jobs:
11
permissions:
12
contents: write
13
steps:
14
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4 # Updated from v3
15
16
- name: Set up Python
17
- uses: actions/setup-python@v4
+ uses: actions/setup-python@v5 # Updated from v4
18
with:
19
python-version: '3.x'
20
@@ -35,7 +35,13 @@ jobs:
35
- name: Build Documentation
36
run: |
37
cd docs
38
- sphinx-build -b html . _build/html -v # Verbose output
+ sphinx-build -b html . _build/html -v -w /tmp/sphinx-log
39
+ cat /tmp/sphinx-log
40
+ continue-on-error: true
41
+
42
+ - name: Display Sphinx build log
43
+ if: failure()
44
+ run: cat /tmp/sphinx-log
45
46
- name: Check build output
47
0 commit comments