Skip to content

Commit 966a038

Browse files
authored
Update build.yml
1 parent f8a9aca commit 966a038

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

.github/workflows/build.yml

+11-3
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,17 @@ jobs:
4646
uses: r-lib/actions/setup-renv@v2
4747
with:
4848
cache-version: 1
49-
50-
- name: Install lualatex
51-
run: sudo tlmgr install lualatex
49+
50+
- name: Install TeX Live and lualatex
51+
run: |
52+
sudo apt-get update
53+
sudo apt-get install -y texlive
54+
sudo apt-get install -y texlive-luatex
55+
56+
- name: Check TeX Live and lualatex installation
57+
run: |
58+
which lualatex
59+
lualatex --version
5260
5361
- name: Render and Publish
5462
uses: quarto-dev/quarto-actions/publish@v2

0 commit comments

Comments
 (0)