From de06b02cfeb4c8e9785bb42c7a96a91b38a04c0d Mon Sep 17 00:00:00 2001 From: AndrewMusser Date: Thu, 25 Jul 2024 11:32:30 -0400 Subject: [PATCH] Update the mechanism for installing Inno setup --- .github/workflows/release.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5c96856..90e3f3d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,8 +22,10 @@ jobs: submodules: true token: ${{ secrets.GH_LPM_ASPYTHON_TOKEN }} - - name: Download + Install Inno - uses: pwall2222/inno-setup-download@v0.0.4 + - name: Download Inno Setup installer + run: Invoke-WebRequest -Uri "https://jrsoftware.org/download.php/is.exe" -OutFile "is.exe" + - name: Install Inno Setup silently + run: .\is.exe /verysilent /dir="C:\Program Files\InnoSetup" - name: Create the EXE Installer working-directory: ./utils