1
0
mirror of https://github.com/Minionguyjpro/Inno-Setup-Action.git synced 2026-04-12 18:01:24 +02:00
Files
inno-setup/action.yml
2026-03-13 09:09:02 +01:00

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: 'node24'
main: 'dist/index.js'