ci: fix binary artifact dir paths used in Windows job

Signed-off-by: Babak K. Shandiz <babakks@github.com>
This commit is contained in:
Babak K. Shandiz 2025-12-15 18:56:03 +00:00
parent 89c66542b8
commit dd6783868b
No known key found for this signature in database
GPG key ID: 9472CAEFF56C742E

View file

@ -213,7 +213,7 @@ jobs:
MSI_VERSION="$(cut -d_ -f2 <<<"$MSI_NAME" | cut -d- -f1)"
case "$MSI_NAME" in
*_386 )
source_dir="$PWD/dist/windows_windows_386"
source_dir="$PWD/dist/windows_windows_386_sse2"
platform="x86"
;;
*_amd64 )
@ -221,7 +221,7 @@ jobs:
platform="x64"
;;
*_arm64 )
source_dir="$PWD/dist/windows_windows_arm64"
source_dir="$PWD/dist/windows_windows_arm64_v8.0"
platform="arm64"
;;
* )