Skip to content

Commit aeadcbb

Browse files
committed
install iscc manually
1 parent 7267294 commit aeadcbb

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/branch.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,9 @@ jobs:
120120
cache: true
121121
- name: Build Windows Application
122122
run: flutter build windows --dart-define=COMMIT_SHA=${{ github.sha }} --dart-define=flutter.flutter_map.unblockOSM="${{ secrets.UNBLOCK_OSM }}"
123+
- name: Install Inno Setup
124+
if: ${{ matrix.sdk == '' }}
125+
run: choco install innosetup --yes --no-progress
123126
- name: Create Windows Application Installer
124127
if: ${{ matrix.sdk == '' }}
125128
run: iscc "windowsApplicationInstallerSetup.iss"

.github/workflows/master.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,9 @@ jobs:
7777
cache: true
7878
- name: Build Windows Application
7979
run: flutter build windows --dart-define=COMMIT_SHA=${{ github.sha }} --dart-define=flutter.flutter_map.unblockOSM="${{ secrets.UNBLOCK_OSM }}"
80+
- name: Install Inno Setup
81+
if: ${{ matrix.sdk == '' }}
82+
run: choco install innosetup --yes --no-progress
8083
- name: Create Windows Application Installer
8184
run: iscc "windowsApplicationInstallerSetup.iss"
8285
working-directory: .

0 commit comments

Comments
 (0)