Skip to content

add slides link

add slides link #96

Workflow file for this run

name: deploy-jb
on:
push:
branches:
- main
jobs:
deploy-jb:
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 pip dependencies.
run: pip install jupyter-book==1.0.4.post1 sphinx-exercise==1.0.1
- name: Build the book
run: jupyter-book build . --all
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
if: ${{ github.ref == 'refs/heads/main' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./_build/html