Skip to content

Commit a565d85

Browse files
committed
refactor(build-release.yml): pin innosetup to 6.3.3. no need to use latest.
1 parent d75b73d commit a565d85

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/tools/innosetup-6.3.3.exe

5.37 MB
Binary file not shown.

.github/workflows/build-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ jobs:
7373

7474
- name: Install Inno Setup
7575
run: |
76-
Invoke-WebRequest -Uri "https://jrsoftware.org/download.php/is.exe" -OutFile "is.exe"
77-
Start-Process -FilePath "is.exe" -ArgumentList "/VERYSILENT /SUPPRESSMSGBOXES /NORESTART" -Wait
76+
Start-Process -FilePath ".github/tools/innosetup-6.3.3.exe" -ArgumentList "/VERYSILENT /SUPPRESSMSGBOXES /NORESTART" -Wait
77+
shell: pwsh
7878

7979
- name: Create Inno Setup script
8080
run: |

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,7 @@ _ReSharper*/
4545

4646
# Installer files
4747
[Ss]etup/[Oo]utput/
48-
*.exe
48+
*.exe
49+
50+
# Exception for Inno Setup
51+
!.github/tools/innosetup-6.3.3.exe

0 commit comments

Comments
 (0)