diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c1f3c10..8be7807 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,6 +13,14 @@ jobs: - name: Checkout repo uses: actions/checkout@v4 + - name: Install fonts + run: | + apt update + apt install --yes \ + fonts-roboto \ + fonts-adobe-sourcesans3 \ + ; + - name: Compile run: make diff --git a/Makefile b/Makefile index ae1a12a..3e093fd 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ .PHONY: examples -CC = xelatex +CC = lualatex EXAMPLES_DIR = examples RESUME_DIR = examples/resume CV_DIR = examples/cv diff --git a/awesome-cv.cls b/awesome-cv.cls index a962c5a..44c46e9 100644 --- a/awesome-cv.cls +++ b/awesome-cv.cls @@ -80,11 +80,11 @@ \defaultfontfeatures{ Renderer=HarfBuzz, } -\setmainfont{SourceSansPro}[ +\setmainfont{SourceSans3}[ FontFace={l}{n}{Font=*-Light}, FontFace={l}{it}{Font=*-LightItalic}, ] -\setsansfont{SourceSansPro}[ +\setsansfont{SourceSans3}[ FontFace={l}{n}{Font=*-Light}, FontFace={l}{it}{Font=*-LightItalic}, ] diff --git a/examples/coverletter.pdf b/examples/coverletter.pdf index b3e4421..6bca12b 100644 Binary files a/examples/coverletter.pdf and b/examples/coverletter.pdf differ diff --git a/examples/cv.pdf b/examples/cv.pdf index 205233e..655b67c 100644 Binary files a/examples/cv.pdf and b/examples/cv.pdf differ diff --git a/examples/resume.pdf b/examples/resume.pdf index 918b5f7..48a7771 100644 Binary files a/examples/resume.pdf and b/examples/resume.pdf differ