Skip to content

Commit d937a2a

Browse files
Add lualatex to GH action (#20)
1 parent 9ef831e commit d937a2a

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/ExportPluto.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Install Julia
2929
uses: julia-actions/setup-julia@v1
3030
with:
31-
version: "1" # This will automatically pick the latest Julia version
31+
version: "1.11.6"
3232

3333
- name: Cache Julia artifacts & such
3434
uses: julia-actions/cache@v2
@@ -45,6 +45,12 @@ jobs:
4545
restore-keys: |
4646
${{ runner.os }}-pluto_state_cache-v2-${{ hashFiles('**/Project.toml', '**/Manifest.toml', '.github/workflows/*' ) }}
4747
48+
- name: Install TeX packages (lualatex)
49+
run: |
50+
sudo apt-get update
51+
sudo apt-get install pdf2svg texlive-latex-base texlive-binaries texlive-pictures texlive-latex-extra texlive-luatex
52+
which lualatex
53+
lualatex --version
4854
4955
- name: Run & export Pluto notebooks
5056
run: |

0 commit comments

Comments
 (0)