File tree Expand file tree Collapse file tree 3 files changed +57
-2
lines changed Expand file tree Collapse file tree 3 files changed +57
-2
lines changed Original file line number Diff line number Diff line change @@ -17,12 +17,12 @@ jobs:
1717 uses : actions/upload-artifact@v4
1818 with :
1919 name : html-docs
20- path : build/html/
20+ path : docs/ build/html/
2121 - name : Deploy
2222 uses : sphinx-notes/pages@v3
2323 with :
2424 publish : true
2525 - uses : peaceiris/actions-gh-pages@v3
2626 with :
2727 github_token : ${{ secrets.DOCSITE_TOKEN }}
28- publish_dir : build/html
28+ publish_dir : docs/ build/html
Original file line number Diff line number Diff line change 1+ # Minimal makefile for Sphinx documentation
2+ #
3+
4+ # You can set these variables from the command line, and also
5+ # from the environment for the first two.
6+ SPHINXOPTS ?=
7+ SPHINXBUILD ?= sphinx-build
8+ SOURCEDIR = source
9+ BUILDDIR = build
10+
11+ # Put it first so that "make" without argument is like "make help".
12+ help :
13+ @$(SPHINXBUILD ) -M help " $( SOURCEDIR) " " $( BUILDDIR) " $(SPHINXOPTS ) $(O )
14+
15+ .PHONY : help Makefile
16+
17+ # Catch-all target: route all unknown targets to Sphinx using the new
18+ # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
19+ % : Makefile
20+ @$(SPHINXBUILD ) -M $@ " $( SOURCEDIR) " " $( BUILDDIR) " $(SPHINXOPTS ) $(O )
Original file line number Diff line number Diff line change 1+ @ ECHO OFF
2+
3+ pushd %~dp0
4+
5+ REM Command file for Sphinx documentation
6+
7+ if " %SPHINXBUILD% " == " " (
8+ set SPHINXBUILD = sphinx-build
9+ )
10+ set SOURCEDIR = source
11+ set BUILDDIR = build
12+
13+ %SPHINXBUILD% > NUL 2 > NUL
14+ if errorlevel 9009 (
15+ echo .
16+ echo .The 'sphinx-build' command was not found. Make sure you have Sphinx
17+ echo .installed, then set the SPHINXBUILD environment variable to point
18+ echo .to the full path of the 'sphinx-build' executable. Alternatively you
19+ echo .may add the Sphinx directory to PATH.
20+ echo .
21+ echo .If you don't have Sphinx installed, grab it from
22+ echo .https://www.sphinx-doc.org/
23+ exit /b 1
24+ )
25+
26+ if " %1 " == " " goto help
27+
28+ %SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
29+ goto end
30+
31+ :help
32+ %SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
33+
34+ :end
35+ popd
You can’t perform that action at this time.
0 commit comments