Initial Commit.

This commit is contained in:
2023-03-12 17:11:02 -07:00
commit 572fe09ebf
10 changed files with 279 additions and 0 deletions

24
unity/action.yaml Normal file
View File

@@ -0,0 +1,24 @@
name: unity
description: "Register Unity with the provided license and run a Unity command."
inputs:
serial:
description: "Unity license serial number."
required: true
email:
description: "Unity email."
required: true
password:
description: "Unity password."
required: true
command:
description: "Unity command to run."
required: false
runs:
using: docker
#This is a base "mock" image which is replaced by the correct image in the "unity-command" action at runtime.
image: docker://unityci/base:latest
args:
- ${{ inputs.serial }}
- ${{ inputs.email }}
- ${{ inputs.password }}
- ${{ inputs.command }}