fixed non zero exit codes
All checks were successful
build-latex / build (push) Successful in 7m11s

This commit is contained in:
Jonas_Jones 2025-06-10 18:59:43 +02:00
parent efb665a724
commit c76613da2b

View file

@ -22,8 +22,12 @@ jobs:
- name: compile LaTeX document
run: |
pdflatex -interaction=nonstopmode main.tex
pdflatex -interaction=nonstopmode main.tex
pdflatex -interaction=nonstopmode main.tex || true
pdflatex -interaction=nonstopmode main.tex || true
if [ ! -f main.pdf ]; then
echo "PDF was not generated."
exit 1
fi
- name: capture PDF artifact
uses: https://code.forgejo.org/forgejo/upload-artifact@v4