Skip to content

Update intro.md

Update intro.md #11

Workflow file for this run

name: PR Build
on:
pull_request:
# when using teardown: 'true', add default event types + closed event type
types: [opened, synchronize, reopened, closed]
#permissions:
# pull-requests: write # allow surge-preview to create/update PR comments
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
# environment: SurgePreviewPR
runs-on: ubuntu-latest
defaults:
run:
shell: bash -el {0}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Conda environment with Micromamba
uses: mamba-org/setup-micromamba@v1
with:
environment-file: environment.yml
cache-environment: true
- name: Build JupyterBook
run: |
jb build book
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: html
path: book/_build/html