We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bccfcb6 commit 56f3aeaCopy full SHA for 56f3aea
.github/workflows/build-notebooks-push.yaml
@@ -30,6 +30,13 @@ jobs:
30
has_jobs: ${{ steps.gen.outputs.has_jobs }}
31
steps:
32
- uses: actions/checkout@v5
33
+ - name: Install Pandoc and TeX Live (for PDF) 🧪
34
+ run: |
35
+ # Update package lists
36
+ sudo apt-get update
37
+ # Install pandoc AND the required LaTeX packages
38
+ sudo apt-get install -y pandoc texlive-xetex texlive-fonts-recommended
39
+
40
41
- name: Determine targets to build (we want to build everything on push)
42
run: |
0 commit comments