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

This commit is contained in:
2025-01-21 17:02:48 -08:00
parent a560ea41f8
commit f6c9ace0f5
2 changed files with 27 additions and 1 deletions

View File

@ -33,7 +33,32 @@ jobs:
- name: Build handouts
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:
name: output
path: "output/*"