From 09f5b7204cc926919639fba881da9288a7dcfc97 Mon Sep 17 00:00:00 2001 From: Josiah Ivey Date: Tue, 18 Feb 2025 05:39:03 -0800 Subject: [PATCH] run the install command in cmd not powershell --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3019715..8358352 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -49,6 +49,7 @@ jobs: run: | venv-pywebview\\Scripts\\activate bun run build + - name: Windows - Sign artifact if: matrix.os == 'windows-latest' uses: azure/trusted-signing-action@v0.4.0 @@ -72,7 +73,7 @@ jobs: - name: Windows - Create Installer if: matrix.os == 'windows-latest' run: | - "C:\Program Files (x86)\NSIS\makensis.exe" installer.nsi + & "C:\Program Files (x86)\NSIS\makensis.exe" installer.nsi - name: Windows - Sign Installer if: matrix.os == 'windows-latest'