From 33081ee29057ccf5486e30462dd821d25491db6b Mon Sep 17 00:00:00 2001 From: Magnus Persson Date: Sat, 8 Jan 2022 10:27:44 +0100 Subject: [PATCH] Updated action for docs --- .github/workflows/doc-build.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/doc-build.yaml b/.github/workflows/doc-build.yaml index 5fa4e10..7ce4165 100644 --- a/.github/workflows/doc-build.yaml +++ b/.github/workflows/doc-build.yaml @@ -12,8 +12,14 @@ jobs: steps: - uses: actions/checkout@v2 + - name: Install dependant theme + run: | + python -m pip install --upgrade pip + pip install sphinx_rtd_theme + - uses: ammaraskar/sphinx-action@master with: docs-folder: "src_docs/" - build-command: "sphinx-build -b html ./source _build" + build-command: "sphinx-build -b html ./source ../docs" + # .nojekyll file must exist in docs \ No newline at end of file