Skip to content

Commit f6b7e62

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

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/deploy_github.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,10 @@ jobs:
4444
# Run the binary (the most simple test)
4545
dist\\DCOR-Aid\\DCOR-Aid.exe --version
4646
python win_make_iss.py
47-
ISCC.exe /Q win_dcoraid.iss
47+
# install innosetup (not in Windows 2025 GHA image)
48+
winget install --id JRSoftware.InnoSetup -e -s winget
49+
$env:path += ";$env:LOCALAPPDATA/Programs/Inno Setup 6"
50+
iscc -Qp win_dcoraid.iss
4851
- name: Release Assets
4952
uses: softprops/action-gh-release@v1
5053
with:

CHANGELOG

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
0.18.1
2+
- ci: fix build pipeline (innosetup missing in win 2025 image)
13
0.18.0
24
- feat: implement local database for caching (partially #5)
35
- fix: missing .rtdc resource files in filter view

0 commit comments

Comments
 (0)