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 dbc524f commit 73544eeCopy full SHA for 73544ee
1 file changed
.github/workflows/sphinxbuild.yml
@@ -58,11 +58,20 @@ jobs:
58
- name: Checkout repository
59
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
60
61
+ - name: Cache LaTeX apt packages
62
+ uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
63
+ with:
64
+ path: /var/cache/apt/archives
65
+ key: latex-apt-${{ runner.os }}-${{ hashFiles('.github/workflows/sphinxbuild.yml') }}
66
+ restore-keys: |
67
+ latex-apt-${{ runner.os }}
68
+
69
- name: Install LaTeX dependencies
70
if: ${{ matrix.manual.build_pdf_path }}
71
run: |
72
sudo DEBIAN_FRONTEND=noninteractive apt-get update
73
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y \
74
+ --no-install-recommends \
75
python3-pil \
76
python3-pip \
77
texlive-fonts-recommended \
0 commit comments