Skip to content

Commit 1f3cfbf

Browse files
update workflow
1 parent 529032c commit 1f3cfbf

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

.github/workflows/build.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,15 @@ jobs:
1313
steps:
1414
- name: Checkout repo
1515
uses: actions/checkout@v4
16-
- name: Compile Typst to PDF
17-
uses: ammar-ahmed22/compile-typst-action@v1
18-
with:
19-
source_paths: 'cv_2025.typ'
20-
output_paths: 'cv_2025.pdf'
16+
- name: Install Typst
17+
run: |
18+
wget https://github.com/typst/typst/releases/latest/download/typst-x86_64-unknown-linux-musl.tar.xz
19+
tar xvf typst-x86_64-unknown-linux-musl.tar.xz
20+
mv typst-x86_64-unknown-linux-musl/typst .
21+
- name: Compile Files
22+
runs: |
23+
./typst c cv_2025.typ
24+
./typst c cv_2025_en.typ
2125
- name: Commit compiled PDFs
2226
uses: stefanzweifel/git-auto-commit-action@v5
2327
with:

0 commit comments

Comments
 (0)