Skip to content
This repository was archived by the owner on Feb 18, 2026. It is now read-only.

schema section added #6

schema section added

schema section added #6

Workflow file for this run

name: Deploy Jupyter Book to GitHub Pages
on:
push:
branches:
- main # Change this if your main branch has a different name
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
run: |
pip install -U pip
pip install jupyter-book ghp-import
- name: Build the Jupyter Book
run: jupyter-book build ibisba_workshops
- name: Deploy to GitHub Pages
run: |
ghp-import -n -p -f ibisba_workshops/_build/html