We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61146d2 commit d28a1edCopy full SHA for d28a1ed
.github/workflows/deploy.yml
@@ -35,14 +35,20 @@ jobs:
35
- uses: actions/setup-node@v4
36
with:
37
node-version: 18.x
38
- - name: Install MyST
39
- run: npm install -g mystmd
40
41
# Install MyST and PDF dependencies
42
- name: Install MyST Markdown
43
run: npm install -g mystmd
44
- name: Setup Typst
45
uses: typst-community/setup-typst@v4
+ - name: Install LaTeX
+ run: |
46
+ sudo apt-get update
47
+ sudo apt-get install -y \
48
+ texlive-xetex \
49
+ texlive-fonts-recommended \
50
+ texlive-fonts-extra \
51
+ texlive-lang-german # Recommended for your Lebenslauf if using German
52
53
# Build PDF and then HTML
54
- name: Build PDF Assets
0 commit comments