From 8acfa8c144cef1251004bab2bce5f67dd2199583 Mon Sep 17 00:00:00 2001 From: "C.Lee Taylor" Date: Fri, 28 Feb 2025 11:11:32 +0200 Subject: [PATCH] testing: change base path --- .github/workflows/build_binaries.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_binaries.yml b/.github/workflows/build_binaries.yml index 21ccfcdbd1..5316249fd5 100644 --- a/.github/workflows/build_binaries.yml +++ b/.github/workflows/build_binaries.yml @@ -112,7 +112,8 @@ jobs: shell: pwsh run: | #$basePath = "$env:LOCALAPPDATA\TrustedSigning\Microsoft.Windows.SDK.BuildTools" - $basePath = "$env:LOCALAPPDATA" + #$basePath = "$env:LOCALAPPDATA" + $basePath = "$env:ProgramFiles(x86)" # Find the latest versioned directory $latestVersionDir = Get-ChildItem -Path $basePath -Directory | Sort-Object Name -Descending | Select-Object -First 1