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