Skip to content

Commit 3a08da6

Browse files
committed
Replace "texlive-full" with "texlive-latex-{recommended,extra}"
1 parent 9603544 commit 3a08da6

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

.github/workflows/source-and-docs-release.yml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -138,14 +138,19 @@ jobs:
138138

139139
- name: "Install docs dependencies"
140140
run: |
141-
python -m pip install \
142-
-r Doc/requirements.txt
143-
141+
python -m pip install -r Doc/requirements.txt
144142
sudo apt-get update
145143
sudo apt-get install --yes --no-install-recommends \
146-
latexmk texlive-xetex xindy texinfo texlive-latex-base \
147-
texlive-fonts-recommended texlive-fonts-extra \
148-
texlive-full
144+
latexmk \
145+
texlive-latex-base \
146+
texlive-latex-recommended \
147+
texlive-latex-extra \
148+
texlive-fonts-recommended \
149+
texlive-xetex \
150+
texlive-fonts-extra \
151+
fonts-freefont-otf \
152+
xindy \
153+
texinfo
149154
150155
- name: "Build docs"
151156
run: |

0 commit comments

Comments
 (0)