Compare commits

..

1 Commits

Author SHA1 Message Date
e3c1293fda 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) Failing after 1m30s
2025-02-09 23:18:51 +01:00

View File

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