Skip to content

Commit 84b4eca

Browse files
committed
ci: fix build pipeline (innosetup missing in win 2025 image)
1 parent f6b7e62 commit 84b4eca

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/deploy_github_signed_windows.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,10 @@ jobs:
7474
working-directory: ./build-recipes
7575
run: |
7676
python win_make_iss.py
77-
ISCC.exe /Q win_dcoraid.iss
77+
# install innosetup (not in Windows 2025 GHA image)
78+
winget install --id JRSoftware.InnoSetup -e -s winget
79+
$env:path += ";$env:LOCALAPPDATA/Programs/Inno Setup 6"
80+
iscc -Qp win_dcoraid.iss
7881
- name: Upload windows installer
7982
id: uploadInstallerArtifact
8083
uses: actions/upload-artifact@v4.4.3

CHANGELOG

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
0.18.2
2+
- ci: fix build pipeline (innosetup missing in win 2025 image)
13
0.18.1
24
- ci: fix build pipeline (innosetup missing in win 2025 image)
35
0.18.0

0 commit comments

Comments
 (0)