We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8a9aca commit 966a038Copy full SHA for 966a038
.github/workflows/build.yml
@@ -46,9 +46,17 @@ jobs:
46
uses: r-lib/actions/setup-renv@v2
47
with:
48
cache-version: 1
49
-
50
- - name: Install lualatex
51
- run: sudo tlmgr install lualatex
+
+ - name: Install TeX Live and lualatex
+ 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
58
+ which lualatex
59
+ lualatex --version
60
61
- name: Render and Publish
62
uses: quarto-dev/quarto-actions/publish@v2
0 commit comments