Skip to content

Commit cceb247

Browse files
committed
Update docs.yml
1 parent f109350 commit cceb247

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/docs.yml

+9-3
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
permissions:
1212
contents: write
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4 # Updated from v3
1515

1616
- name: Set up Python
17-
uses: actions/setup-python@v4
17+
uses: actions/setup-python@v5 # Updated from v4
1818
with:
1919
python-version: '3.x'
2020

@@ -35,7 +35,13 @@ jobs:
3535
- name: Build Documentation
3636
run: |
3737
cd docs
38-
sphinx-build -b html . _build/html -v # Verbose output
38+
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
3945

4046
- name: Check build output
4147
run: |

0 commit comments

Comments
 (0)