trigger build
Build LaTeX PDF / build (push) Failing after 25s

This commit is contained in:
Domipoke
2026-07-26 21:48:19 +02:00
parent 7cb4313532
commit bfefc2529f
2 changed files with 3 additions and 4 deletions
+2 -3
View File
@@ -33,12 +33,11 @@ jobs:
- name: Compile changed root files
if: steps.changed.outputs.roots != ''
uses: docker://texlive/texlive:latest
uses: docker://texlive/texlive:latest-full
with:
entrypoint: sh
args: >-
-c "tlmgr install beamertheme-metropolis fontawesome5 &&
mkdir -p pdf aux && for f in ${{ steps.changed.outputs.roots }}; do
-c "mkdir -p pdf aux && for f in ${{ steps.changed.outputs.roots }}; do
echo Building $f;
latexmk -pdf -interaction=nonstopmode -halt-on-error -outdir=pdf -auxdir=aux \"$f\" || exit 1;
done && find pdf -type f ! -name '*.pdf' -delete"