Skip to content

Commit

Permalink
chore: fix installBuilder download URLs for macOS and Windows [deploy]
Browse files Browse the repository at this point in the history
  • Loading branch information
cutedaffodil committed Jan 29, 2024
1 parent 00667e4 commit b342805
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

- run: curl https://download.mono-project.com/archive/6.12.0/macos-10-universal/MonoFramework-MDK-6.12.0.122.macos10.xamarin.universal.pkg --output MonoFramework.pkg
- run: sudo installer -pkg MonoFramework.pkg -target /
- run: wget "https://installbuilder.com/installbuilder-enterprise-23.11.0-osx-installer.dmg" >/dev/null
- run: wget "https://releases.installbuilder.com/installbuilder/installbuilder-enterprise-23.11.0-osx-installer.dmg" >/dev/null
- run: hdiutil mount installbuilder-enterprise-23.11.0-osx-installer.dmg
- run: sudo '/Volumes/InstallBuilder Enterprise/installbuilder-enterprise-23.11.0-osx-installer.app/Contents/MacOS/installbuilder.sh' --mode unattended --unattendedmodeui none >/dev/null

Expand Down
4 changes: 2 additions & 2 deletions build-tools/install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ try {
$gtkInstallerMsiLocal = "$($buildToolsDir)$($gtkInstaller)"
$gtkInstallerInstallLog = "$($buildToolsDir)gtkInstallerLog.log"

$installBuilder = "installbuilder-enterprise-23.11.0-windows-installer.exe"
$installBuilderExe = "https://installbuilder.com/$($installBuilder)"
$installBuilder = "installbuilder-enterprise-23.11.0-windows-x64-installer.exe"
$installBuilderExe = "https://releases.installbuilder.com/installbuilder/$($installBuilder)"
$installBuilderExeLocal = "$($buildToolsDir)$($installBuilder)"
$installBuilderInstallLog = "$($buildToolsDir)installbuilder.log"

Expand Down

0 comments on commit b342805

Please sign in to comment.