From d4ba99aa94d10b75652f4504e3db30229128f036 Mon Sep 17 00:00:00 2001 From: Abdalla1423 <77030779+Abdalla1423@users.noreply.github.com> Date: Fri, 7 Jun 2024 20:38:48 +0200 Subject: [PATCH] Update documentation.yml --- .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 7a212f0..426a778 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -16,12 +16,12 @@ jobs: pip install sphinx sphinx_rtd_theme myst_parser - name: Sphinx build run: | - sphinx-build docs _build + sphinx-build docs 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