From cc1b07d5f06b73166b7bee46a9fddbe190c90f83 Mon Sep 17 00:00:00 2001 From: deepend-tildeclub <58404188+deepend-tildeclub@users.noreply.github.com> Date: Mon, 12 Jan 2026 20:38:25 -0700 Subject: [PATCH] Update paths for installer script and output --- .github/workflows/windows-arm64-msys2.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/windows-arm64-msys2.yml b/.github/workflows/windows-arm64-msys2.yml index 1e5bcd39..d59ffbbc 100644 --- a/.github/workflows/windows-arm64-msys2.yml +++ b/.github/workflows/windows-arm64-msys2.yml @@ -207,11 +207,11 @@ jobs: throw "ISCC_PATH missing or invalid." } - if (-not (Test-Path "installer\zoitechat-arm64.iss")) { - throw "installer\zoitechat-arm64.iss not found." + if (-not (Test-Path "win32\installer\zoitechat-arm64.iss")) { + throw "win32\installer\zoitechat-arm64.iss not found." } - & $iscc "installer\zoitechat-arm64.iss" | Out-Host + & $iscc "win32\installer\zoitechat-arm64.iss" | Out-Host if ($LASTEXITCODE -ne 0) { throw "ISCC failed with exit code $LASTEXITCODE" } @@ -219,4 +219,4 @@ jobs: - uses: actions/upload-artifact@v4 with: name: zoitechat-windows-arm64-installer - path: installer\Output\*.exe + path: win32\installer\Output\*.exe