Mark 9a65d3a46a
Some checks failed
Lints / typos (push) Successful in 22s
Build and deploy / build (push) Failing after 18m45s
act
2025-01-21 16:06:31 -08:00

38 lines
884 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 update
DEBIAN_FRONTEND=noninteractive sudo apt install --yes texlive-full
#- name: Install TeXLive
# run: |
# cd /tmp
# wget "https://mirror.ctan.org/systems/texlive/tlnet/install-tl-unx.tar.gz"
# zcat < install-tl-unx.tar.gz | tar xf -
# rm "install-tl-unx.tar.gz"
# cd "install-tl-20250121"
# sudo perl ./install-tl --no-interaction
- name: Build LaTeX handouts
run: python tools/build/main.py
- uses: actions/upload-artifact@v3
with:
name: output
path: "output/*"
retention-days: 10