Skip to content

Commit f2fbe1f

Browse files
committed
Install PDF dependencies in GH Action
1 parent 61146d2 commit f2fbe1f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/deploy.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,16 @@ jobs:
3535
- uses: actions/setup-node@v4
3636
with:
3737
node-version: 18.x
38-
- name: Install MyST
39-
run: npm install -g mystmd
4038

4139
# Install MyST and PDF dependencies
4240
- name: Install MyST Markdown
4341
run: npm install -g mystmd
4442
- name: Setup Typst
4543
uses: typst-community/setup-typst@v4
44+
- name: Install LaTeX
45+
run: |
46+
sudo apt-get update
47+
sudo apt-get install -y latexmk texlive-latex-recommended texlive-latex-extra
4648
4749
# Build PDF and then HTML
4850
- name: Build PDF Assets

0 commit comments

Comments
 (0)