From 72f3d55d048c6163c40ac1550ce0cb2c5958c736 Mon Sep 17 00:00:00 2001 From: Jerome Thayananthajothy Date: Mon, 2 Sep 2024 06:25:51 +0100 Subject: [PATCH] Update build process to include makeappx.exe path verification --- .github/workflows/release.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c67f4e1..e7be72a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -104,6 +104,7 @@ jobs: run: | # Verify makeappx.exe $makeappxPath = 'C:\Program Files (x86)\Windows Kits\10\App Certification Kit\makeappx.exe' + if (Test-Path $makeappxPath) { echo "makeappx.exe found at $makeappxPath" $env:WINDOWS_KIT_PATH="C:\Program Files (x86)\Windows Kits\10\App Certification Kit" @@ -115,10 +116,6 @@ jobs: # Install dependencies npm install - # Provide environment variables for signing during the build - $env:CERT_PATH=$certPath - $env:CERT_PASSWORD=$certPassword - # Build and sign the appx using Electron Forge npm run make -- --arch=${{ matrix.arch }} env: