mirror of
https://github.com/Minionguyjpro/Inno-Setup-Action
synced 2026-02-18 01:31:15 +01:00
- Changed lint script to target JavaScript files in the src directory. - Removed eslintConfig section as it is no longer needed.
19 lines
418 B
YAML
Executable File
19 lines
418 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
|
|
|
|
runs:
|
|
using: 'node21'
|
|
main: 'dist/index.js'
|