We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97b90b9 commit 0b0f880Copy full SHA for 0b0f880
2 files changed
.github/workflows/publish_docs.yml
@@ -28,9 +28,9 @@ jobs:
28
cd docs
29
make html
30
- name: Add .nojekyll file
31
- run: touch .nojekyll
+ run: touch docs/build/html/.nojekyll
32
- name: Deploy to GitHub Pages
33
uses: peaceiris/actions-gh-pages@v4
34
with:
35
github_token: ${{ secrets.GITHUB_TOKEN }}
36
- publish_dir: . # directory containing built HTML files
+ publish_dir: docs/build/html
docs/Makefile
@@ -5,7 +5,7 @@
5
SPHINXOPTS =
6
SPHINXBUILD = sphinx-build
7
PAPER =
8
-BUILDDIR = ../../sira-doc-build
+BUILDDIR = build
9
PDFBUILDDIR = /tmp
10
PDF = ../manual.pdf
11
@@ -215,4 +215,3 @@ gh-pages:
215
git commit -m "Generated gh-pages for `git log master -1 --pretty=short --abbrev-commit`"
216
git push origin gh-pages
217
cd $(CURDIR)
218
-
0 commit comments