Skip to content

Commit 776d197

Browse files
committed
Fix documentation workflow path casing
- Update workflow to use correct 'CodeDocs' directory name (capital C) - Ensures consistency between Git tracking and filesystem paths - Matches the actual directory structure tracked by Git
1 parent 4840e4c commit 776d197

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/python-docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626
install-docs-reqs: 'true'
2727
- name: Generate Sphinx docs
2828
run: |
29-
sphinx-apidoc -o doc/codeDocs/ src/
30-
sphinx-build -b html doc/codeDocs/ doc/codeDocs/_build/html
29+
sphinx-apidoc -o doc/CodeDocs/ src/
30+
sphinx-build -b html doc/CodeDocs/ doc/CodeDocs/_build/html
3131
- name: Upload documentation artifact
3232
uses: actions/upload-artifact@v4
3333
with:
3434
name: sphinx-docs
35-
path: doc/codeDocs/_build/html
35+
path: doc/CodeDocs/_build/html

0 commit comments

Comments
 (0)