We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 566aa0d commit bf17ba0Copy full SHA for bf17ba0
.github/workflows/create-release.yml
@@ -162,7 +162,10 @@ jobs:
162
run: cp ./${{ steps.installer.outputs.filename }} ./${{ env.release }}
163
- name: Build Installer
164
if: contains(matrix.architecture, 'win-')
165
- run: ISCC.exe ${{ steps.installer.outputs.filename }} /F"dev-proxy-installer-${{ matrix.architecture }}-${{ github.ref_name }}"
+ 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 }}"
169
working-directory: ./${{ env.release }}
170
- name: Sign installer
171
0 commit comments