Skip to content

Commit 145480c

Browse files
authored
Merge pull request #1 from marcothms/marcothms-github-ci
ft: add GitHub CI build
2 parents 0f25520 + f9f50a3 commit 145480c

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/build.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Build Typst document
2+
on: push
3+
4+
jobs:
5+
build:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: Checkout
9+
uses: actions/checkout@v3
10+
- name: Typst
11+
uses: lvignoli/typst-action@main
12+
with:
13+
source_file: presentation.typ
14+
- name: Upload PDF file
15+
uses: actions/upload-artifact@v3
16+
with:
17+
name: PDF
18+
path: presentation.pdf

0 commit comments

Comments
 (0)