Skip to content

Commit

Permalink
Update build process to include makeappx.exe path verification
Browse files Browse the repository at this point in the history
  • Loading branch information
Thavarshan committed Sep 2, 2024
1 parent cd22899 commit 72f3d55
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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:
Expand Down

0 comments on commit 72f3d55

Please sign in to comment.