moved more around
All checks were successful
Build Typst PDFs (Docker) / build-typst (push) Successful in 11s

This commit is contained in:
alexander
2026-01-19 01:04:12 +01:00
parent 8b24c9ea8e
commit ecdc00b4b2
4 changed files with 8 additions and 9 deletions

View File

@@ -7,10 +7,6 @@ on:
pull_request:
branches: [ "**" ]
env:
TYPST_SOURCE_DIR: src
BUILD_DIR: build
jobs:
build-typst:
runs-on: ubuntu-latest
@@ -28,23 +24,26 @@ jobs:
- name: Debug Ls
run: ls -la "$PWD" && echo "$PWD && echo ${{ github.workspace }}"
- name: Make build directory
run: mkdir -p build
- name: Compile Analysis1
continue-on-error: true
with:
working-directory: src/Analysis1
run: typst compile Analysis1.typ ../../build/Analysis1.pdf
run: typst compile --root src src/cheatsheets/Analysis1.typ ../build/Analysis1.pdf
- name: Compile Schaltungstheorie
continue-on-error: true
with:
working-directory: src/Schaltungstheorie
run: typst compile Schaltungstheorie.typ ../../build/Schaltungstheorie.pdf
run: typst compile --root src src/cheatsheets/Schaltungstheorie.typ ../build/Schaltungstheorie.pdf
- name: Compile LinAlg
continue-on-error: true
with:
working-directory: src/LinearAlgebra
run: typst compile LinearAlgebra.typ ../../build/LinearAlgebra.pdf
run: typst compile --root src src/cheatsheets/LinearAlgebra.typ ../build/LinearAlgebra.pdf
- name: Create Gitea Release
continue-on-error: true