File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: Deploy Sphinx documentation to GitHub Pages
22
33on :
44 push :
5- branches : ["prod "]
5+ branches : ["Dev "]
66 workflow_dispatch :
77
88permissions :
@@ -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
You can’t perform that action at this time.
0 commit comments