All checks were successful
Build Typst PDFs (Docker) / build-typst (push) Successful in 11s
58 lines
1.7 KiB
YAML
58 lines
1.7 KiB
YAML
# .gitea/workflows/typst-build.yml
|
|
name: Build Typst PDFs (Docker)
|
|
|
|
on:
|
|
push:
|
|
branches: [ "**" ]
|
|
pull_request:
|
|
branches: [ "**" ]
|
|
|
|
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: Make build directory
|
|
run: mkdir -p build
|
|
|
|
- name: Compile Analysis1
|
|
continue-on-error: true
|
|
with:
|
|
working-directory: src/Analysis1
|
|
run: typst compile --root src src/cheatsheets/Analysis1.typ ../build/Analysis1.pdf
|
|
|
|
- name: Compile Schaltungstheorie
|
|
continue-on-error: true
|
|
with:
|
|
working-directory: src/Schaltungstheorie
|
|
run: typst compile --root src src/cheatsheets/Schaltungstheorie.typ ../build/Schaltungstheorie.pdf
|
|
|
|
- name: Compile LinAlg
|
|
continue-on-error: true
|
|
with:
|
|
working-directory: src/LinearAlgebra
|
|
run: typst compile --root src src/cheatsheets/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 |