We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ef831e commit d937a2aCopy full SHA for d937a2a
.github/workflows/ExportPluto.yaml
@@ -28,7 +28,7 @@ jobs:
28
- name: Install Julia
29
uses: julia-actions/setup-julia@v1
30
with:
31
- version: "1" # This will automatically pick the latest Julia version
+ version: "1.11.6"
32
33
- name: Cache Julia artifacts & such
34
uses: julia-actions/cache@v2
@@ -45,6 +45,12 @@ jobs:
45
restore-keys: |
46
${{ runner.os }}-pluto_state_cache-v2-${{ hashFiles('**/Project.toml', '**/Manifest.toml', '.github/workflows/*' ) }}
47
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
54
55
- name: Run & export Pluto notebooks
56
run: |
0 commit comments