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 f6b7e62 commit 84b4ecaCopy full SHA for 84b4eca
2 files changed
.github/workflows/deploy_github_signed_windows.yml
@@ -74,7 +74,10 @@ jobs:
74
working-directory: ./build-recipes
75
run: |
76
python win_make_iss.py
77
- ISCC.exe /Q win_dcoraid.iss
+ # 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
81
- name: Upload windows installer
82
id: uploadInstallerArtifact
83
uses: actions/upload-artifact@v4.4.3
CHANGELOG
@@ -1,3 +1,5 @@
1
+0.18.2
2
+ - ci: fix build pipeline (innosetup missing in win 2025 image)
3
0.18.1
4
- ci: fix build pipeline (innosetup missing in win 2025 image)
5
0.18.0
0 commit comments