act
Some checks failed
Lints / typos (push) Successful in 21s
Build and deploy / build (push) Failing after 4m37s

This commit is contained in:
Mark 2025-01-21 17:02:48 -08:00
parent a560ea41f8
commit f6c9ace0f5
Signed by: Mark
GPG Key ID: C6D63995FE72FD80
2 changed files with 27 additions and 1 deletions

View File

@ -33,7 +33,32 @@ jobs:
- name: Build handouts - name: Build handouts
run: TYPST_PATH="$(pwd)/typst" python tools/build/main.py run: TYPST_PATH="$(pwd)/typst" python tools/build/main.py
- uses: actions/upload-artifact@v3 - name: Advanced logs
uses: actions/upload-artifact@v3
if: always()
with:
name: "logs: advanced"
path: "Advanced/*"
retention-days: 1
- name: Intermediate logs
uses: actions/upload-artifact@v3
if: always()
with:
name: "logs: intermediate"
path: "Intermediate/*"
retention-days: 1
- name: Warm-Up logs
uses: actions/upload-artifact@v3
if: always()
with:
name: "logs: warm-ups"
path: "Warm-Ups/*"
retention-days: 1
- name: Upload output
uses: actions/upload-artifact@v3
with: with:
name: output name: output
path: "output/*" path: "output/*"

View File

@ -291,6 +291,7 @@ def build_dir(base: str, out_sub: str, index: list[IndexEntry]):
index: list[IndexEntry] = [] index: list[IndexEntry] = []
index.extend(build_dir("Warm-Ups", "Warm-Ups", index))
index.extend(build_dir("Advanced", "Advanced", index)) index.extend(build_dir("Advanced", "Advanced", index))
index.extend(build_dir("Intermediate", "Intermediate", index)) index.extend(build_dir("Intermediate", "Intermediate", index))