From 8b24c9ea8ec54f1559144ec41eaf82c02851e6d9 Mon Sep 17 00:00:00 2001 From: alexander Date: Mon, 19 Jan 2026 00:58:42 +0100 Subject: [PATCH] a --- .gitea/workflows/build-script.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/build-script.yaml b/.gitea/workflows/build-script.yaml index 758946c..a01a5b9 100644 --- a/.gitea/workflows/build-script.yaml +++ b/.gitea/workflows/build-script.yaml @@ -31,20 +31,20 @@ jobs: - name: Compile Analysis1 continue-on-error: true with: - working-directory: ${{ env.TYPST_SOURCE_DIR }}/Analysis1 - run: typst compile Analysis1.typ ${{ env.BUILD_DIR }}/Analysis1.pdf + working-directory: src/Analysis1 + run: typst compile Analysis1.typ ../../build/Analysis1.pdf - name: Compile Schaltungstheorie continue-on-error: true with: - working-directory: ${{ env.TYPST_SOURCE_DIR }}/Schaltungstheorie - run: typst compile Schaltungstheorie.typ ${{ env.BUILD_DIR }}/Schaltungstheorie.pdf + working-directory: src/Schaltungstheorie + run: typst compile Schaltungstheorie.typ ../../build/Schaltungstheorie.pdf - name: Compile LinAlg continue-on-error: true with: - working-directory: ${{ env.TYPST_SOURCE_DIR }}/LinearAlgebra - run: typst compile LinearAlgebra.typ ${{ env.BUILD_DIR }}/LinearAlgebra.pdf + working-directory: src/LinearAlgebra + run: typst compile LinearAlgebra.typ ../../build/LinearAlgebra.pdf - name: Create Gitea Release continue-on-error: true