Skip to content

Update to data plans and toc #30

Update to data plans and toc

Update to data plans and toc #30

Workflow file for this run

name: Build and Deploy Jupyter Book
on:
push:
branches: [main]
concurrency:
group: pages
cancel-in-progress: true
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Install dependencies
run: pip install -r requirements.txt
- name: Build Jupyter Book
run: jupyter-book build .
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./_build/html
force_orphan: true