initial commit

This commit is contained in:
Lillith Rose (Device: Lucia) 2025-06-28 14:44:05 -04:00
commit f29cef440f
3 changed files with 128 additions and 0 deletions

15
action.yml Normal file
View file

@ -0,0 +1,15 @@
name: Create UnityPackage
description: Create a .unitypackage from Unity project files with .meta files
inputs:
projectDir:
description: Path to the root of your Unity project
required: true
filesDir:
description: Subfolder to pack (relative to projectDir)
required: true
output:
description: Output path for the .unitypackage file
required: true
runs:
using: "node20"
main: "index.js"