CI path experiment

This commit is contained in:
Nicolas Kruse 2025-05-19 15:34:22 +02:00
parent 1abc883ee6
commit 2b5fde630b
1 changed files with 6 additions and 4 deletions

View File

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