Skip to content

Commit 324b081

Browse files
authored
Update static.yml
1 parent 3b4826c commit 324b081

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/static.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Deploy Sphinx documentation to GitHub Pages
22

33
on:
44
push:
5-
branches: ["prod"]
5+
branches: ["Dev"]
66
workflow_dispatch:
77

88
permissions:
@@ -32,16 +32,16 @@ jobs:
3232
- name: Install dependencies
3333
run: |
3434
python -m pip install --upgrade pip
35-
pip install sphinx sphinx_rtd_theme
35+
pip install sphinx sphinx_rtd_theme myst-parser furo
3636
3737
- name: Build Sphinx documentation
3838
run: |
39-
sphinx-build -b html ./docs/source ./docs/build/html
39+
sphinx-build -b html ./docs/source ./docs/html
4040
4141
- name: Upload Pages artifact
4242
uses: actions/upload-pages-artifact@v3
4343
with:
44-
path: ./docs/build/html # Dossier contenant la doc HTML générée
44+
path: ./docs/html # Dossier contenant la doc HTML générée
4545

4646
- name: Deploy to GitHub Pages
4747
id: deployment

0 commit comments

Comments
 (0)