2024-10-28 15:02:53 +00:00
|
|
|
name: Build Typst document
|
|
|
|
on: push
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build_typst_documents:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Typst
|
|
|
|
uses: lvignoli/typst-action@main
|
|
|
|
with:
|
2024-11-04 14:12:53 +00:00
|
|
|
source_file: main.typ
|
2024-12-20 10:52:51 +00:00
|
|
|
options: |
|
2024-12-20 10:59:05 +00:00
|
|
|
--input
|
|
|
|
inwriting=false
|
|
|
|
--input
|
|
|
|
draft=false
|
2024-10-28 15:05:52 +00:00
|
|
|
- name: Upload PDF file
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: PDF
|
2024-11-04 14:12:53 +00:00
|
|
|
path: main.pdf
|