From 86193b7169ee162d088cfdd339d6f3ccd089b5cb Mon Sep 17 00:00:00 2001 From: Carlos Date: Wed, 4 Oct 2023 09:42:54 -0300 Subject: [PATCH] Hard coded pat to VCLibs Debug appx in the workflow file. Cannot rely on $env:ExtensionSdkDir --- .github/workflows/qa-azure.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/qa-azure.yaml b/.github/workflows/qa-azure.yaml index a363e772e..44ffe36a2 100644 --- a/.github/workflows/qa-azure.yaml +++ b/.github/workflows/qa-azure.yaml @@ -142,7 +142,7 @@ jobs: Import-Certificate -FilePath "${cert}" -CertStoreLocation Cert:LocalMachine\TrustedPeople # Installing a debug version of VCLibs from the SDK is required, otherwise installing the Ubuntu pro debug appx will fail. - Add-AppxPackage "$env:ExtensionSdkDir\Microsoft.VCLibs.Desktop\14.0\Appx\Debug\x64\Microsoft.VCLibs.x64.Debug.14.00.Desktop.appx" + Add-AppxPackage "C:\Program Files (x86)\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.VCLibs.Desktop\14.0\Appx\Debug\x64\Microsoft.VCLibs.x64.Debug.14.00.Desktop.appx" Write-Output "::endgroup::"