github action initialisation

This commit is contained in:
dutchie031
2026-04-07 14:11:44 +02:00
parent bd52a23a5f
commit d75f424b6a
9 changed files with 563 additions and 114 deletions
+15
View File
@@ -0,0 +1,15 @@
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'