There was an error while loading. Please reload this page.
1 parent a40ebd3 commit 8154a95Copy full SHA for 8154a95
1 file changed
.github/scripts/Package-Windows.ps1
@@ -75,9 +75,8 @@ function Package {
75
76
$env:PATH = "C:\Program Files (x86)\Inno Setup 6;$env:PATH"
77
78
- Push-Location "${ProjectRoot}/release/${Configuration}"
79
- Invoke-External ISCC.exe "/O${ProjectRoot}/release" "${ProjectRoot}/build_${Target}/install.iss"
80
- Pop-Location
+ Copy-Item "${ProjectRoot}/build_${Target}/install.iss" "${ProjectRoot}/release/${Configuration}/install.iss"
+ Invoke-External ISCC.exe "/O${ProjectRoot}/release" "${ProjectRoot}/release/${Configuration}/install.iss"
81
82
$InstallerSrc = "${ProjectRoot}/release/${ProductName}-${ProductVersion}.exe"
83
$InstallerDst = "${ProjectRoot}/release/${OutputName}.exe"
0 commit comments