Mark 2055e6d65f
Some checks failed
Build and deploy / build (push) Failing after 7s
Lints / typos (push) Successful in 19s
action
2025-01-21 15:54:05 -08:00

28 lines
507 B
YAML

on:
push:
pull_request:
workflow_run:
name: Build and deploy
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Install TeXLive
run: |
sudo apt install texlive texlive-latex-extra
- name: Build LaTeX handouts
run: python tools/build/main.py
- uses: actions/upload-artifact@v3
with:
name: output
path: "output/*"
retention-days: 10