Skip to content

Commit

Permalink
use setup texlive action instead of apt
Browse files Browse the repository at this point in the history
  • Loading branch information
gucio321 committed Apr 18, 2024
1 parent 045a63c commit 25adc32
Showing 1 changed file with 31 additions and 3 deletions.
34 changes: 31 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,37 @@ jobs:
- name: install python3 dependencies
run: |
python3 -m pip install -r requirements.txt
- name: install latex dependencies
run: |
sudo apt install -y latexmk texlive texlive-fonts-extra texlive-full
#- name: install latex dependencies
# run: |
# sudo apt install -y latexmk texlive texlive-fonts-extra texlive-full
- name: setup texlive
uses: teatimeguest/setup-texlive-action@v3
with:
version: 2024
packages: |
# to list local packages use: tlmgr info --list --data name
scheme-basic
latexmk
cmap
cancel
tex-gyre
fncychap
float
wrapfig
capt-of
framed
babel-polish
fancyvrb
upquote
needspace
tabulary
varwidth
booktabs
parskip
titlesec
etoolbox
makecell
caption
- name: build PDF
run: make latexpdf
- name: extract file name
Expand Down

0 comments on commit 25adc32

Please sign in to comment.