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 633e562 commit f6b7e62Copy full SHA for f6b7e62
2 files changed
.github/workflows/deploy_github.yml
@@ -44,7 +44,10 @@ jobs:
44
# Run the binary (the most simple test)
45
dist\\DCOR-Aid\\DCOR-Aid.exe --version
46
python win_make_iss.py
47
- ISCC.exe /Q win_dcoraid.iss
+ # 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
51
- name: Release Assets
52
uses: softprops/action-gh-release@v1
53
with:
CHANGELOG
@@ -1,3 +1,5 @@
1
+0.18.1
2
+ - ci: fix build pipeline (innosetup missing in win 2025 image)
3
0.18.0
4
- feat: implement local database for caching (partially #5)
5
- fix: missing .rtdc resource files in filter view
0 commit comments