Skip to content

execute -on

execute -on #6

Workflow file for this run

name: 📘 Build & Deploy Jupyter Book
on:
push:
branches:
- main
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repository
uses: actions/checkout@v4
- name: 🛠️ Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: 📦 Install dependencies
run: |
pip install -U pip
pip install jupyter-book
- name: 🧱 Build Jupyter Book (skip execution via config)
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