1
0
Matthias Veigel 987afcb67f
Some checks failed
/ Build pdf (push) Failing after 30s
Fixed CI file
2025-07-22 15:21:38 +02:00

19 lines
450 B
YAML

on:
- push
jobs:
build:
name: Build pdf
runs-on: 'docker'
container:
archlinux:latest
steps:
- run: pacman -Sy --noconfirm nodejs git typst fontconfig ttf-linux-libertine ttf-inconsolata ttf-fira-code ttf-fira-sans
- uses: actions/checkout@v3
- run: typst c main.typ
- run: typst c presentation.typ
- uses: actions/upload-artifact@v3
with:
name: pdfs
path: "*.pdf"