Files
TUM-Formelsammlungen/.gitea/workflows/build-script.yaml
alexander 024a49c08d
Some checks failed
Build Typst PDFs (Docker) / build-typst (push) Has been cancelled
Partial Ci cicd
2025-12-14 17:59:54 +01:00

32 lines
677 B
YAML

# .gitea/workflows/typst-build.yml
name: Build Typst PDFs (Docker)
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
# Change this to the folder that contains your .typ files (relative to repo root)
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:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 1
submodules: false
lfs: false
- name: Show Typst & OS versions
run: |
typst --version || true
uname -a