diff --git a/.github/workflows/documentation.yaml b/.github/workflows/documentation.yaml index fd14089..b89995d 100644 --- a/.github/workflows/documentation.yaml +++ b/.github/workflows/documentation.yaml @@ -17,14 +17,16 @@ jobs: pip install sphinx sphinx_rtd_theme - name: Sphinx build run: | - sphinx-build docs/source _build + #sphinx-build docs/source _build + cd docs + make html - name: Setup Pages uses: actions/configure-pages@v2 - name: Upload artifact uses: actions/upload-pages-artifact@v1 with: # Upload entire repository - path: './docs/_build' + path: './docs/build/html' - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v1