1
0
mirror of https://github.com/Minionguyjpro/Inno-Setup-Action synced 2026-02-19 01:41:19 +01:00

feat: Add option to install latest Inno Setup via URL

Introduces 'install_latest' and 'installer_url' inputs to allow downloading and installing the latest Inno Setup from a specified URL before running. Updates logic to support silent installation via direct download or fallback to Chocolatey, and improves detection of iscc.exe location.
This commit is contained in:
DannyFeng
2025-11-22 17:44:09 +08:00
parent 7fb04715ea
commit 7981c38375
2 changed files with 105 additions and 18 deletions

View File

@@ -12,6 +12,14 @@ inputs:
options:
description: 'Extra arguments/options to include. Include the slashes for them.'
required: false
install_latest:
description: 'Set to true to download and install the latest Inno Setup from the installer URL before running.'
required: false
default: 'false'
installer_url:
description: 'URL to download the Inno Setup installer (can be overridden).'
required: false
default: 'https://jrsoftware.org/download.php/is.exe?site=1'
runs:
using: 'node20'