Skip to content

Commit a16863b

Browse files
committed
different font manager
1 parent 40fb4c3 commit a16863b

2 files changed

Lines changed: 7 additions & 4 deletions

File tree

.github/workflows/build-resume.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,19 @@ jobs:
2020
- name: Checkout repository
2121
uses: actions/checkout@v4
2222

23-
- uses: fontist/setup-fontist@v2
24-
- run: fontist install "TeX"
23+
- name: Install Tex live
24+
uses: paolobrasolin/setup-texlive-action@v1
25+
26+
- name: Install TeX Gyre fonts
27+
run: tlmgr install tex-gyre
2528

2629
- name: Install Typst
2730
uses: typst-community/setup-typst@v2
2831
with:
2932
version: latest
3033

3134
- name: Compile resume
32-
run: typst compile resume.typ ${{ env.FILE }} --font-path ~/.fontist/fonts
35+
run: typst compile resume.typ ${{ env.FILE }}
3336

3437
- name: Upload PDF artifact
3538
uses: actions/upload-artifact@v4

src/templates.typ

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
margin: (x: 0.5in, y: 0.5in),
77
paper: "us-letter",
88
)
9-
set text(font: ("TeXGyreHeros", "TeX Gyre Heros"), style: "normal", weight: 400, size: 10pt)
9+
set text(font: ("Libertinus Serif", "TeX Gyre Heros"), style: "normal", weight: 400, size: 10pt)
1010

1111
body
1212
}

0 commit comments

Comments
 (0)