Skip to content

Commit bf17ba0

Browse files
Add Inno Setup installation step for Windows installer build (#1394)
1 parent 566aa0d commit bf17ba0

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/create-release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,10 @@ jobs:
162162
run: cp ./${{ steps.installer.outputs.filename }} ./${{ env.release }}
163163
- name: Build Installer
164164
if: contains(matrix.architecture, 'win-')
165-
run: ISCC.exe ${{ steps.installer.outputs.filename }} /F"dev-proxy-installer-${{ matrix.architecture }}-${{ github.ref_name }}"
165+
run: |
166+
winget install --id JRSoftware.InnoSetup -e -s winget
167+
$env:path += ";$env:LOCALAPPDATA/Programs/Inno Setup 6"
168+
ISCC.exe ${{ steps.installer.outputs.filename }} /F"dev-proxy-installer-${{ matrix.architecture }}-${{ github.ref_name }}"
166169
working-directory: ./${{ env.release }}
167170
- name: Sign installer
168171
if: contains(matrix.architecture, 'win-')

0 commit comments

Comments
 (0)