diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 8534cc0..62410a5 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -104,41 +104,3 @@ jobs: PYPI_API_TOKEN: ${{ secrets.PYPI_API_TOKEN }} with: password: ${{ secrets.PYPI_API_TOKEN }} - - pages: - name: Deploy to GitHub Pages - runs-on: ubuntu-24.04 - if: ${{ github.ref_name == github.event.repository.default_branch || (github.event_name == 'release' && github.event.action == 'published') }} - permissions: - contents: write - id-token: write - timeout-minutes: 15 - - steps: - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - with: - token: ${{ secrets.GITHUB_TOKEN }} - ref: ${{ github.head_ref }} - - - name: Cache - uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4 - with: - path: | - ~/vcpkg - ~/.cache/pip - ~/.cache/vcpkg - key: cd-pages-${{ hashFiles('vcpkg.json') }} - restore-keys: cd-pages-${{ hashFiles('vcpkg.json') }} - - - uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5 - with: - python-version: 3.x - - - name: Build Docs - run: pipx run nox -s docs - - - name: Deploy to GitHub Pages - uses: peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e # v4 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./docs/_build/html