Compare commits

..

1 Commits

Author SHA1 Message Date
bdd5a20117 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 55s
2025-02-09 22:55:30 +01:00

View File

@@ -13,15 +13,15 @@ jobs:
steps: steps:
- name: Install Node.js - name: Install Node.js
run: | run: |
apt-get update && apt install -y curl apt update && apt install -y curl
curl -fsSL https://deb.nodesource.com/setup_20.x | sudo bash - curl -fsSL https://deb.nodesource.com/setup_20.x | sudo bash -
apt-get install -y nodejs apt install -y nodejs
- name: Set up Git repository - name: Set up Git repository
uses: actions/checkout@v4.2.2 uses: actions/checkout@v4.2.2
- name: Install LaTeX - name: Install LaTeX
run: apt-get install texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended -y run: sudo apt update && sudo apt install texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended
- name: Build LaTeX document - name: Build LaTeX document
run: pdflatex -interaction=nonstopmode -halt-on-error Tesi.tex run: pdflatex -interaction=nonstopmode -halt-on-error Tesi.tex