diff options
author | Erik Johnston <erikj@element.io> | 2024-05-01 17:01:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-01 16:01:50 +0000 |
commit | 0b358f8643bcec9263d115303ace92e6980d2c6f (patch) | |
tree | 3a91d6830de6eedb219b7f7a6a5f99f20800060c /.github | |
parent | Correct licensing metadata on the Docker image (#17141) (diff) | |
download | synapse-0b358f8643bcec9263d115303ace92e6980d2c6f.tar.xz |
Drop sphinx docs (#17073)
It is broken, and we only seemed to have been building it for the federation sender. Closes https://github.com/element-hq/synapse/issues/16804
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/docs.yaml | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index fe3212f82a..434dcbb6c7 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -85,33 +85,3 @@ jobs: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./book destination_dir: ./${{ needs.pre.outputs.branch-version }} - -################################################################################ - pages-devdocs: - name: GitHub Pages (developer docs) - runs-on: ubuntu-latest - needs: - - pre - steps: - - uses: actions/checkout@v4 - - - name: "Set up Sphinx" - uses: matrix-org/setup-python-poetry@v1 - with: - python-version: "3.x" - poetry-version: "1.3.2" - groups: "dev-docs" - extras: "" - - - name: Build the documentation - run: | - cd dev-docs - poetry run make html - - # Deploy to the target directory. - - name: Deploy to gh pages - uses: peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e # v4.0.0 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./dev-docs/_build/html - destination_dir: ./dev-docs/${{ needs.pre.outputs.branch-version }} |