Fixing build issue #24
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 | |
workflow_dispatch: # Allow manual triggering | |
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: Setup Conda | |
uses: conda-incubator/setup-miniconda@v3 | |
with: | |
auto-update-conda: true | |
python-version: '3.11' | |
activate-environment: jupyter-book | |
environment-file: requirements-book.yml | |
auto-activate-base: false | |
conda-remove-defaults: true | |
- name: Build the book | |
shell: bash -l {0} | |
run: | | |
conda info | |
conda list | |
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 |