diff --git a/.github/workflows/Publish-Python3-Bindings.yml b/.github/workflows/Publish-Python3-Bindings.yml index 71e211f..e023529 100644 --- a/.github/workflows/Publish-Python3-Bindings.yml +++ b/.github/workflows/Publish-Python3-Bindings.yml @@ -81,13 +81,18 @@ jobs: - name: Generate doxygen documentation run: | - doxygen .\Doxyfile -w html -g .\Doxyfile + mkdir docs + cd docs + doxygen ..\Doxyfile -w html -g .\Doxyfile + cd .. - - name: Deploy to GitHub Pages - uses: peaceiris/actions-gh-pages@v3 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./html + - name: Deploy to GitHub Pages + uses: peaceiris/actions-gh-pages@v3 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ./docs + keep_files: true + allow_empty_commit: true