Skip to content

fix cthulhutech.ipynb #190

fix cthulhutech.ipynb

fix cthulhutech.ipynb #190

name: Deploy Notebooks
on:
workflow_dispatch:
push:
branches:
- main
paths:
- 'notebooks/**'
- 'jupyter*'
- 'favicon*'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '>=3.11'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install jupyterlab_server pkginfo
pip install --pre jupyterlite-core
pip install --pre jupyterlite-pyodide-kernel
- name: Build JupyterLite Site
run: |
jupyter lite build
- name: Copy Favicon
run: |
mkdir -p dist/
cp favicon.* dist/
- name: Deploy
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: dist
target-folder: notebooks