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

@@ -9,13 +9,13 @@ on:
jobs:
build_latex:
runs-on: ubuntu-latest
container: ubuntu:latest
container:
steps:
- name: Install Node.js
run: |
apt update && apt install -y curl
curl -fsSL https://deb.nodesource.com/setup_20.x | sudo bash -
sudo apt-get install -y nodejs
apt install -y nodejs
- name: Set up Git repository
uses: actions/checkout@v4.2.2