Skip to content

increase cell timeout to 5 min #32

increase cell timeout to 5 min

increase cell timeout to 5 min #32

Workflow file for this run

name: deploy-docs
on:
push:
branches:
- main
paths:
- docs/**
- .github/workflows/deploy-docs.yaml
jobs:
deploy-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
python-version: "3.11"
- name: Install package
run: |
pip install osmnx
pip install matplotlib
pip install maturin
pip install jupyter-book
pip install sphinx-book-theme
pip install .
- name: Build book
shell: bash -el {0}
working-directory: ${{runner.workspace}}/routee-compass/docs/
run: |
jupyter-book build .
# Push the book's HTML to github-pages
- name: GitHub Pages action
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/_build/html