Compare commits

..

1 Commits

Author SHA1 Message Date
8de82bc020 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 1m24s
2025-02-09 22:57:41 +01:00

View File

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