act
This commit is contained in:
parent
a560ea41f8
commit
f6c9ace0f5
27
.github/workflows/build.yml
vendored
27
.github/workflows/build.yml
vendored
@ -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/*"
|
||||||
|
@ -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))
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user