Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions .github/workflows/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,14 @@ jobs:
- name: "Install APT dependencies"
run: |
wget https://github.com/jgm/pandoc/releases/download/3.7.0.2/pandoc-3.7.0.2-1-amd64.deb
apt update
apt install -y ./pandoc-3.7.0.2-1-amd64.deb
apt install -y texlive-latex-extra texlive-fonts-recommended texlive-fonts-extra
sudo apt update
sudo apt install -y ./pandoc-3.7.0.2-1-amd64.deb
sudo apt install -y texlive-latex-extra texlive-fonts-recommended texlive-fonts-extra
tlmgr init-usertree
tlmgr repository add ftp://tug.org/historic/systems/texlive/2021/tlnet-final
version=$(tlmgr --version | awk '/version/ {print $5}')
tlmgr repository add ftp://tug.org/historic/systems/texlive/${version}/tlnet-final
tlmgr repository remove https://mirror.ctan.org/systems/texlive/tlnet
tlmgr option repository ftp://tug.org/historic/systems/texlive/2021/tlnet-final
tlmgr option repository ftp://tug.org/historic/systems/texlive/${version}/tlnet-final
tlmgr install sourcecodepro draftwatermark

- name: "Install Python dependencies"
Expand Down