From 740384a4339a1ce0ef2081db2076c4e92083af25 Mon Sep 17 00:00:00 2001 From: alexander Date: Mon, 19 Jan 2026 00:57:27 +0100 Subject: [PATCH] Moved names arround --- .gitea/workflows/build-script.yaml | 12 ++++++------ src/{analysis1 => Analysis1}/Analysis1.typ | 0 src/{linAlg => LinearAlgebra}/LinearAlgebra.typ | 0 3 files changed, 6 insertions(+), 6 deletions(-) rename src/{analysis1 => Analysis1}/Analysis1.typ (100%) rename src/{linAlg => LinearAlgebra}/LinearAlgebra.typ (100%) diff --git a/.gitea/workflows/build-script.yaml b/.gitea/workflows/build-script.yaml index 5325b2e..758946c 100644 --- a/.gitea/workflows/build-script.yaml +++ b/.gitea/workflows/build-script.yaml @@ -28,22 +28,22 @@ jobs: - name: Debug Ls run: ls -la "$PWD" && echo "$PWD && echo ${{ github.workspace }}" - - name: Compile Analysis 1 + - name: Compile Analysis1 continue-on-error: true with: - working-directory: ${{ env.TYPST_SOURCE_DIR }}/analysis-1 - run: typst compile analysis-1.typ ${{ env.BUILD_DIR }}/analysis-1.pdf + working-directory: ${{ env.TYPST_SOURCE_DIR }}/Analysis1 + run: typst compile Analysis1.typ ${{ env.BUILD_DIR }}/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: ${{ env.TYPST_SOURCE_DIR }}/Schaltungstheorie + run: typst compile Schaltungstheorie.typ ${{ env.BUILD_DIR }}/Schaltungstheorie.pdf - name: Compile LinAlg continue-on-error: true with: - working-directory: ${{ env.TYPST_SOURCE_DIR }}/linAlg + working-directory: ${{ env.TYPST_SOURCE_DIR }}/LinearAlgebra run: typst compile LinearAlgebra.typ ${{ env.BUILD_DIR }}/LinearAlgebra.pdf - name: Create Gitea Release diff --git a/src/analysis1/Analysis1.typ b/src/Analysis1/Analysis1.typ similarity index 100% rename from src/analysis1/Analysis1.typ rename to src/Analysis1/Analysis1.typ diff --git a/src/linAlg/LinearAlgebra.typ b/src/LinearAlgebra/LinearAlgebra.typ similarity index 100% rename from src/linAlg/LinearAlgebra.typ rename to src/LinearAlgebra/LinearAlgebra.typ