Compare commits

..

1 Commits

Author SHA1 Message Date
03bfa08de2 Refactor GitHub Actions workflow to install LaTeX dependencies and build document directly, updating artifact upload step
Some checks failed
Build LaTeX Document / build_latex (pull_request) Has been cancelled
2025-02-09 23:25:13 +01:00

View File

@@ -9,8 +9,6 @@ on:
jobs:
build_latex:
runs-on: ubuntu-latest
container:
image: ubuntu:latest
steps:
- name: Install Node.js
run: |
@@ -29,6 +27,9 @@ jobs:
apt-get install miktex -y
miktexsetup --shared=yes finish
- name: Update MiKTeX
run: miktexsetup --update
- name: Build LaTeX document
run: |
pdflatex -interaction=nonstopmode -halt-on-error Tesi.tex || (cat /root/.miktex/texmfs/data/miktex/log/pdflatex.log && exit 1)