Skip to content
This repository was archived by the owner on May 6, 2026. It is now read-only.

Commit 11eff10

Browse files
yysjasmineclaude
andcommitted
ci(release): download unofficial ChineseSimplified.isl for Inno Setup
The chocolatey `innosetup` package only ships official language packs, so `iscc installer.iss` failed on the windows-latest runner when loading ChineseSimplified.isl. Grab it from jrsoftware/issrc before running iscc. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 8f61d24 commit 11eff10

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,18 @@ jobs:
3131
# chocolatey is preinstalled on windows-latest runners.
3232
run: choco install -y innosetup
3333

34+
- name: Install unofficial ChineseSimplified.isl
35+
# The chocolatey Inno Setup package ships official language packs
36+
# only; installer.iss also loads the unofficial ChineseSimplified.isl,
37+
# which must be dropped into the Languages/ folder manually. Source:
38+
# https://github.com/jrsoftware/issrc/tree/main/Files/Languages/Unofficial
39+
shell: pwsh
40+
run: |
41+
$dest = 'C:\Program Files (x86)\Inno Setup 6\Languages\ChineseSimplified.isl'
42+
$url = 'https://raw.githubusercontent.com/jrsoftware/issrc/main/Files/Languages/Unofficial/ChineseSimplified.isl'
43+
Invoke-WebRequest -Uri $url -OutFile $dest -UseBasicParsing
44+
if (-not (Test-Path $dest)) { throw "Failed to download ChineseSimplified.isl" }
45+
3446
- name: Build installer
3547
shell: pwsh
3648
working-directory: windows

0 commit comments

Comments
 (0)