From 19d25c3333559f30974068e4c6bec6a328aaa181 Mon Sep 17 00:00:00 2001 From: Waldek Mastykarz Date: Wed, 24 Sep 2025 09:02:35 +0200 Subject: [PATCH] Add Inno Setup installation step for Windows installer build --- .github/workflows/create-release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 774a9ce6..2e4afb37 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -162,7 +162,10 @@ jobs: run: cp ./${{ steps.installer.outputs.filename }} ./${{ env.release }} - name: Build Installer if: contains(matrix.architecture, 'win-') - run: ISCC.exe ${{ steps.installer.outputs.filename }} /F"dev-proxy-installer-${{ matrix.architecture }}-${{ github.ref_name }}" + run: | + winget install --id JRSoftware.InnoSetup -e -s winget + $env:path += ";$env:LOCALAPPDATA/Programs/Inno Setup 6" + ISCC.exe ${{ steps.installer.outputs.filename }} /F"dev-proxy-installer-${{ matrix.architecture }}-${{ github.ref_name }}" working-directory: ./${{ env.release }} - name: Sign installer if: contains(matrix.architecture, 'win-')