From 53f7f3c828b27bea8a2709e47c5a5ada133a8114 Mon Sep 17 00:00:00 2001 From: Nicolas Kruse Date: Mon, 19 May 2025 15:00:06 +0200 Subject: [PATCH] path for MiKTeX changed --- .github/workflows/ci.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4983cde..88e4117 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: |