We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 529032c commit 1f3cfbfCopy full SHA for 1f3cfbf
.github/workflows/build.yml
@@ -13,11 +13,15 @@ jobs:
13
steps:
14
- name: Checkout repo
15
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'
+ - name: Install Typst
+ run: |
+ wget https://github.com/typst/typst/releases/latest/download/typst-x86_64-unknown-linux-musl.tar.xz
+ tar xvf typst-x86_64-unknown-linux-musl.tar.xz
+ 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
25
- name: Commit compiled PDFs
26
uses: stefanzweifel/git-auto-commit-action@v5
27
with:
0 commit comments