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 f9b5a17 commit 57e1392Copy full SHA for 57e1392
.github/actions/windows/action.yml
@@ -40,6 +40,11 @@ runs:
40
run: |
41
choco install innosetup --version=6.4.0 -y
42
$iscc = "${env:ProgramFiles(x86)}\Inno Setup 6\iscc.exe"
43
+ # Remove missing Icelandic language include if present to avoid build failure
44
+ $issPath = "build\windows\x64\installer\Release\inno-script.iss"
45
+ if (Test-Path $issPath) {
46
+ (Get-Content $issPath) | Where-Object { $_ -notmatch 'Icelandic\.isl' } | Set-Content $issPath
47
+ }
48
& "$iscc" /O+ "build\windows\x64\installer\Release\inno-script.iss"
49
50
- name: Store Installer
0 commit comments