Mark ac3d5b20f2
Some checks failed
Lints / typos (push) Successful in 20s
Build and deploy / build (push) Failing after 5m30s
act
2025-01-21 16:38:03 -08:00

37 lines
933 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
# Could also install texlive-full,
# but that takes ~20 minutes.
- name: Install TeXLive
run: |
sudo apt update
DEBIAN_FRONTEND=noninteractive sudo apt install --yes texlive texlive-xetex
- name: Download Typst
run: |
wget "https://github.com/typst/typst/releases/download/v0.12.0/typst-x86_64-unknown-linux-musl.tar.xz"
tar -xf "typst-x86_64-unknown-linux-musl.tar.xz"
mv "typst-x86_64-unknown-linux-musl/typst" .
- name: Build handouts
run: TYPST_PATH="$(pwd)/typst" python tools/build/main.py
- uses: actions/upload-artifact@v3
with:
name: output
path: "output/*"
retention-days: 10