mirror of
https://github.com/Minionguyjpro/Inno-Setup-Action
synced 2026-02-18 09:31:19 +01:00
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.
27 lines
776 B
YAML
Executable File
27 lines
776 B
YAML
Executable File
name: 'Inno Setup Action'
|
|
author: 'Minionguyjpro'
|
|
branding:
|
|
icon: 'box'
|
|
color: 'green'
|
|
description: 'GitHub action to compile .iss (Inno Setup Script) files.'
|
|
|
|
inputs:
|
|
path:
|
|
description: 'Path to input .iss script file'
|
|
required: true
|
|
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'
|
|
main: 'dist/index.js'
|