Initial Commit.
This commit is contained in:
24
unity/action.yaml
Normal file
24
unity/action.yaml
Normal 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 }}
|
||||
Reference in New Issue
Block a user