path for MiKTeX changed

This commit is contained in:
Nicolas Kruse 2025-05-19 15:00:06 +02:00
parent aacb99a40f
commit 53f7f3c828
1 changed files with 9 additions and 2 deletions

View File

@ -66,10 +66,17 @@ jobs:
- name: Install LaTeX
run: choco install miktex
- name: Check directory structure of MiKTeX installation
run: |
dir "C:\Program Files\MiKTeX\*"
- name: Install XeTeX and other required packages
run: |
mpm --install xetex
mpm --update
# Ensure MiKTeX executables are in the PATH
$miktexPath = "C:\Program Files\MiKTeX\bin\x64"
$env:Path += ";$miktexPath"
& "$miktexPath\miktex-console" --install xetex --yes
& "$miktexPath\miktex-console" --update --yes
- name: Install Python dependencies
run: |