Files
TUM-Formelsammlungen/.gitea/workflows/build-script.yaml
alexander 8b24c9ea8e
All checks were successful
Build Typst PDFs (Docker) / build-typst (push) Successful in 9s
a
2026-01-19 00:58:42 +01:00

59 lines
1.6 KiB
YAML

# .gitea/workflows/typst-build.yml
name: Build Typst PDFs (Docker)
on:
push:
branches: [ "**" ]
pull_request:
branches: [ "**" ]
env:
TYPST_SOURCE_DIR: src
BUILD_DIR: build
jobs:
build-typst:
runs-on: ubuntu-latest
# Run the whole job inside a Docker container that has Typst installed
steps:
- uses: typst-community/setup-typst@v4
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 1
submodules: false
lfs: false
- name: Debug Ls
run: ls -la "$PWD" && echo "$PWD && echo ${{ github.workspace }}"
- name: Compile Analysis1
continue-on-error: true
with:
working-directory: src/Analysis1
run: typst compile 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
- name: Compile LinAlg
continue-on-error: true
with:
working-directory: src/LinearAlgebra
run: typst compile LinearAlgebra.typ ../../build/LinearAlgebra.pdf
- name: Create Gitea Release
continue-on-error: true
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ steps.tag.outputs.tag }}
name: Typst PDFs ${{ steps.tag.outputs.tag }}
body: |
Automated release of Typst-generated PDFs.
Commit: ${{ github.sha }}
files: ${{ env.BUILD_DIR }}/*.pdf