From cfd7cb3c6cd293c784a7ca96a094d6fad4dd2edc Mon Sep 17 00:00:00 2001 From: Matthias Veigel Date: Fri, 16 May 2025 14:25:46 +0200 Subject: [PATCH] Added CI --- .gitea/workflows/pdf.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .gitea/workflows/pdf.yaml diff --git a/.gitea/workflows/pdf.yaml b/.gitea/workflows/pdf.yaml new file mode 100644 index 0000000..c9cb767 --- /dev/null +++ b/.gitea/workflows/pdf.yaml @@ -0,0 +1,17 @@ +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 + - uses: actions/checkout@v3 + - run: typst c main.typ + - uses: actions/upload-artifact@v3 + with: + name: main.pdf + path: main.pdf