Compare commits

..

1 Commits

Author SHA1 Message Date
da0b552ee7 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 4m7s
2025-02-09 23:29:23 +01:00

View File

@@ -10,6 +10,12 @@ jobs:
build_latex:
runs-on: ubuntu-latest
steps:
- name: Install Node.js
run: |
apt-get update && apt-get upgrade -y && apt-get install -y curl
curl -fsSL https://deb.nodesource.com/setup_20.x | bash -
apt-get install -y nodejs
- name: Set up Git repository
uses: actions/checkout@v4.2.2
@@ -21,8 +27,8 @@ jobs:
apt-get install miktex -y
miktexsetup --shared=yes finish
- name: Enable automatic package installation
run: initexmf --set-config-value=[MPM]AutoInstall=yes
- name: Update MiKTeX
run: miktexsetup --update
- name: Build LaTeX document
run: |