Skip to content

Publish Website

Publish Website #74

Workflow file for this run

name: Publish Website
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: write
pages: write
id-token: write
on:
workflow_dispatch:
push:
branches: main
paths:
- 'book/**'
jobs:
build-deploy:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Set up Quarto
uses: quarto-dev/quarto-actions/setup@v2
with:
tinytex: true
- name: Install Python and Dependencies
uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'pip'
- run: pip install jupyter
- run: pip install -r requirements.txt
- name: Setup Pages
uses: actions/configure-pages@v1
- name: Render Website
run: quarto render book/
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: 'book/_site'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@main