From f9f50a328ffb5783ab24bcc249b70dcf6bae6e26 Mon Sep 17 00:00:00 2001 From: Marco Thomas Date: Wed, 14 Feb 2024 13:44:32 +0100 Subject: [PATCH] ft: add GitHub CI build --- .github/workflows/build.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..8b7397d --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,18 @@ +name: Build Typst document +on: push + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Typst + uses: lvignoli/typst-action@main + with: + source_file: presentation.typ + - name: Upload PDF file + uses: actions/upload-artifact@v3 + with: + name: PDF + path: presentation.pdf