19 lines
461 B
YAML
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"
|