From 35a3b8356c16012f289defc2de4a3f9920f3313f Mon Sep 17 00:00:00 2001 From: rlyra8 Date: Tue, 16 Jan 2024 14:38:32 -0300 Subject: [PATCH] Use build folder --- workflows/documentation.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/workflows/documentation.yml b/workflows/documentation.yml index 3605344c5..902f7e0ea 100644 --- a/workflows/documentation.yml +++ b/workflows/documentation.yml @@ -34,12 +34,12 @@ jobs: run: cd source - name: Build HTML - run: sphinx-build -b html . ../../../public + run: sphinx-build -b html . ../../../_build - name: Deploy to GitHub Pages uses: peaceiris/actions-gh-pages@v3 with: publish_branch: documentation github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: public/ + publish_dir: _build/ force_orphan: true