Skip to content

Update references to old default branch (#624) #113

Update references to old default branch (#624)

Update references to old default branch (#624) #113

Workflow file for this run

name: GitHub Pages
on:
push:
branches:
- main
jobs:
Deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
- name: Install JekyllNB
run: pip install jekyllnb
- name: Convert Notebooks
run: jupyter jekyllnb --site-dir docs --page-dir _pages --image-dir assets/images notebooks/*.ipynb
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: docs
clean: true