This commit is contained in:
2023-03-19 02:41:13 -07:00
parent 1a40a9a050
commit 8677be12be
2 changed files with 5 additions and 1 deletions

View File

@@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
SERIAL=$1; EMAIL=$2; PASSWORD=$3; COMMAND=$4; UNITY_BUILDER=$4 SERIAL=$1; EMAIL=$2; PASSWORD=$3; COMMAND=$4; UNITY_BUILDER=$5
DEFAULT_ARGS="-quit -logFile -" DEFAULT_ARGS="-quit -logFile -"
rm -rf $HOME/.config/unity3d rm -rf $HOME/.config/unity3d

View File

@@ -14,6 +14,9 @@ inputs:
command: command:
description: "Unity command to run." description: "Unity command to run."
required: false required: false
unityBuilder:
description: "Whether or not to use the UnityBuilder instead of a Unity command."
required: false
runs: runs:
using: docker using: docker
#This is a base "mock" image which is replaced by the correct image in the "unity-command" action at runtime. #This is a base "mock" image which is replaced by the correct image in the "unity-command" action at runtime.
@@ -23,3 +26,4 @@ runs:
- ${{ inputs.email }} - ${{ inputs.email }}
- ${{ inputs.password }} - ${{ inputs.password }}
- ${{ inputs.command }} - ${{ inputs.command }}
- ${{ inputs.unityBuilder }}