diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 9455895..8fb6de5 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -18,11 +18,12 @@ jobs: run: | sphinx-apidoc -o source scraibe/ sphinx-build -M html source docs + make html - name: Deploy to GitHub Pages uses: peaceiris/actions-gh-pages@v3 if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/sphinx_action' }} with: publish_branch: gh-pages github_token: ${{ secrets.TOKEN_GH }} - publish_dir: ./docs - force_orphan: true \ No newline at end of file + publish_dir: ./docs/html + force_orphan: true