diff --git a/.github/workflows/mkdocs.yml b/.github/workflows/mkdocs.yml index a4e9ca82a9..7b927032ee 100644 --- a/.github/workflows/mkdocs.yml +++ b/.github/workflows/mkdocs.yml @@ -13,10 +13,22 @@ jobs: - name: Checkout main uses: actions/checkout@v4 - - name: Deploy docs - uses: mhausenblas/mkdocs-deploy-gh-pages@master - # Or use mhausenblas/mkdocs-deploy-gh-pages@nomaterial to build without the mkdocs-material theme - env: - GITHUB_TOKEN: ${{ secrets.GH_ACTION_PAT }} - CONFIG_FILE: ./mkdocs.yml - REQUIREMENTS: docs/requirements.txt + # - name: Deploy docs + # uses: mhausenblas/mkdocs-deploy-gh-pages@master + # # Or use mhausenblas/mkdocs-deploy-gh-pages@nomaterial to build without the mkdocs-material theme + # env: + # GITHUB_TOKEN: ${{ secrets.GH_ACTION_PAT }} + # CONFIG_FILE: ./mkdocs.yml + # REQUIREMENTS: docs/requirements.txt + - name: Build + uses: Tiryoh/actions-mkdocs@v0 + with: + mkdocs_version: 'latest' # option + #mkdocs_version: '1.1' # option + requirements: 'docs/requirements.txt' # option + configfile: './mkdocs.yml' # option + - name: Deploy + uses: peaceiris/actions-gh-pages@v4 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ./site