We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61146d2 commit 90322f9Copy full SHA for 90322f9
.github/workflows/deploy.yml
@@ -35,14 +35,21 @@ 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
+ latexmk \
49
+ texlive-xetex \
50
+ texlive-fonts-recommended \
51
+ texlive-fonts-extra \
52
+ texlive-lang-german
53
54
# Build PDF and then HTML
55
- name: Build PDF Assets
0 commit comments