1
0
Matthias Veigel 59b93df7b0
All checks were successful
/ Build pdf (push) Successful in 34s
Added missing font
2025-07-22 15:31:38 +02:00

19 lines
461 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 noto-fonts
- uses: actions/checkout@v3
- run: typst c main.typ
- run: typst c presentation.typ
- uses: actions/upload-artifact@v3
with:
name: pdfs
path: "*.pdf"