ci/Cd
All checks were successful
Build Typst PDFs (Docker) / build-typst (push) Successful in 10s

This commit is contained in:
alexander
2026-01-19 00:54:41 +01:00
parent d8769ca440
commit 0f9aed8b07

View File

@@ -29,21 +29,25 @@ jobs:
run: ls -la "$PWD" && echo "$PWD && echo ${{ github.workspace }}"
- name: Compile Analysis 1
continue-on-error: true
with:
working-directory: ${{ env.TYPST_SOURCE_DIR }}/analysis-1
run: typst compile analysis-1.typ --out-dir "../../${{ env.BUILD_DIR }}"
run: typst compile analysis-1.typ ${{ env.BUILD_DIR }}/analysis-1.pdf
- name: Compile Schaltungstheorie
continue-on-error: true
with:
working-directory: ${{ env.TYPST_SOURCE_DIR }}/schaltungstheorie
run: typst compile schaltungstheorie.typ --out-dir "../../${{ env.BUILD_DIR }}"
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
run: typst compile LinearAlgebra.typ --out-dir "../../${{ env.BUILD_DIR }}"
run: typst compile LinearAlgebra.typ ${{ env.BUILD_DIR }}/LinearAlgebra.pdf
- name: Create Gitea Release
continue-on-error: true
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ steps.tag.outputs.tag }}