From dbf34fb4031945170bb77ee36767af1e7abab55a Mon Sep 17 00:00:00 2001 From: Fernando Cervantes Sanchez Date: Fri, 29 Sep 2023 14:57:12 -0400 Subject: [PATCH] Update documentation.yml should use docs instead of doc --- .github/workflows/documentation.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index a60ef6b..67a8484 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -16,12 +16,12 @@ jobs: pip install sphinx sphinx-rtd-theme myst-nb sphinx-autoapi - name: Sphinx build run: | - sphinx-build doc/source _build + sphinx-build docs/source docs/_build - name: Deploy to GitHub Pages uses: peaceiris/actions-gh-pages@v3 if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} with: publish_branch: gh-pages github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: _build/ + publish_dir: docs/_build/ force_orphan: true