Skip to content

deploy

deploy #8

Workflow file for this run

name: deploy
on:
workflow_dispatch:
push:
branches: [ main ]
jobs:
deploy-book:
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup pixi
uses: prefix-dev/[email protected]
with:
pixi-version: v0.34.0
cache: true
frozen: true
# (optional) Cache your executed notebooks between runs
# if you have config:
# execute:
# execute_notebooks: cache
- name: cache executed notebooks
uses: actions/cache@v3
with:
path: rtqc/_build/.jupyter_cache
key: jupyter-book-cache-${{ hashFiles('pixi.toml') }}
# Build the book
- name: Build the book
run: |
pixi run jupyter-book build rtqc
# Upload the book's HTML as an artifact
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: "rtqc/_build/html"
# Deploy the book's HTML to GitHub Pages
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4