Skip to content
This repository was archived by the owner on Feb 7, 2025. It is now read-only.

Commit 365b448

Browse files
committed
Updated directory refs in doc workflow
1 parent c47b976 commit 365b448

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/docs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,22 +35,22 @@ jobs:
3535
- name: Install Package with Relevant Dependencies
3636
run: |
3737
pip install --upgrade pip
38-
pip install -r docs/requirements.txt
38+
pip install -r python_docs/requirements.txt
3939
pip install .
4040
4141
- name: Build HTML
4242
run: |
43-
sphinx-build -M html docs/source/ docs/_build/
43+
sphinx-build -M html python_docs/source/ python_docs/_build/
4444
4545
- name: Upload Artifact
4646
uses: actions/upload-artifact@v4
4747
with:
4848
path:
49-
docs/_build/html/
49+
python_docs/_build/html/
5050

5151
- name: Deploy to GitHub Pages
5252
uses: peaceiris/actions-gh-pages@v4
5353
if: github.ref == 'refs/heads/main'
5454
with:
5555
github_token: ${{ secrets.GITHUB_TOKEN }}
56-
publish_dir: docs/_build/html
56+
publish_dir: python_docs/_build/html

0 commit comments

Comments
 (0)