Skip to content

chore: bump jupyter-server from 2.5.0 to 2.11.2 Bumps [jupyter-server](https://github.com/jupyter-server/jupyter_server) from 2.5.0 to 2.11.2. - [Release notes](https://github.com/jupyter-server/jupyter_server/releases) - [Changelog](https://github.com/jupyter-server/jupyter_server/blob/main/CHANGELOG.md) - [Commits](https://github.com/jupyter-server/jupyter_server/compare/v2.5.0...v2.11.2) --- updated-dependencies: - dependency-name: jupyter-server dependency-type: indirect ... Signed-off-by: depen... #24

chore: bump jupyter-server from 2.5.0 to 2.11.2 Bumps [jupyter-server](https://github.com/jupyter-server/jupyter_server) from 2.5.0 to 2.11.2. - [Release notes](https://github.com/jupyter-server/jupyter_server/releases) - [Changelog](https://github.com/jupyter-server/jupyter_server/blob/main/CHANGELOG.md) - [Commits](https://github.com/jupyter-server/jupyter_server/compare/v2.5.0...v2.11.2) --- updated-dependencies: - dependency-name: jupyter-server dependency-type: indirect ... Signed-off-by: depen...

chore: bump jupyter-server from 2.5.0 to 2.11.2 Bumps [jupyter-server](https://github.com/jupyter-server/jupyter_server) from 2.5.0 to 2.11.2. - [Release notes](https://github.com/jupyter-server/jupyter_server/releases) - [Changelog](https://github.com/jupyter-server/jupyter_server/blob/main/CHANGELOG.md) - [Commits](https://github.com/jupyter-server/jupyter_server/compare/v2.5.0...v2.11.2) --- updated-dependencies: - dependency-name: jupyter-server dependency-type: indirect ... Signed-off-by: depen... #24

Workflow file for this run

name: "Deploy Docs"
run-name: ${{ github.event.workflow_run.head_commit.message }}
on:
workflow_run:
workflows: [ "Build" ]
types: [ "completed" ]
branches: [ "main" ]
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Install poetry
run: |
python -m pip install poetry
- name: Configure poetry
run: |
python -m poetry config virtualenvs.in-project true
- name: Cache the virtualenv
uses: actions/cache@v3
with:
path: ./.venv
key: ${{ runner.os }}-venv-${{ hashFiles('**/poetry.lock') }}
- name: Install documentation dependencies
run: |
make install-docs
- name: Deploy docs to GitHub pages
run: |
make deploy-docs