Files
DcsMissionScriptingTools/gh-scripting-compiler/action.yml
T

16 lines
423 B
YAML

name: 'Scripting Compiler Action'
description: 'Runs the custom ScriptCompiler as a GitHub Action.'
inputs:
source-root:
description: 'The root directory of the source files to compile.'
required: true
default: 'src'
output-file:
description: 'The path to the output file for the compiled script.'
required: true
default: 'output/compiled.lua'
runs:
using: 'node20'
main: 'dist/index.js'