Skip to content

Separating jupyter book deployment libraries requirements from local … #21

Separating jupyter book deployment libraries requirements from local …

Separating jupyter book deployment libraries requirements from local … #21

Workflow file for this run

# GitHub Actions workflow to build and deploy a Jupyter Book to GitHub Pages
# This workflow runs when changes are pushed to the main branch
# It sets up Python, installs dependencies, builds the book, and deploys it
name: deploy-book
on:
push:
branches:
- main
jobs:
deploy-book:
runs-on: ubuntu-latest
permissions:
contents: write
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Setup Conda
uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
python-version: '3.11'
- name: Install book building dependencies
run: |
conda env create -f requirements-book.yml
conda activate jupyter-book
- name: Build the book
run: |
ls -la chapters/
jupyter-book config sphinx .
jupyter-book build . --verbose 2>&1 | tee build.log
cat build.log
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: '_build/html'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4