Skip to content

Initial plotting notebooks #21

Initial plotting notebooks

Initial plotting notebooks #21

Workflow file for this run

name: Render and Publish Test Site
on:
push:
branches: test
workflow_dispatch:
inputs:
reason:
description: 'Reason'
required: false
default: 'Manual trigger'
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
Render:
runs-on: ubuntu-24.04
container:
image: docker://pandoc/core:3.6-ubuntu
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: 'test'
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Render
run: python _build.py
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: './site'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4