This commit is contained in:
2023-08-05 23:03:56 -07:00
parent 7ce207c7a5
commit 0a4385081b
4 changed files with 12 additions and 12 deletions

View File

@@ -24,10 +24,10 @@ inputs:
unityBuilder:
description: "Whether or not to use the UnityBuilder instead of a Unity command."
required: false
useGraphics:
noGraphics:
description: "Whether or not to use the graphics device when running Unity."
required: false
default: "false"
default: "true"
cacheVolume:
description: "Name of the volume to cache the Library folder to."
required: false
@@ -64,7 +64,7 @@ runs:
password: ${{ inputs.password }}
command: -projectPath ${{ inputs.projectPath }} -buildTarget ${{ steps.getTarget.outputs.buildTarget }} ${{ inputs.command }}
removeContainer: ${{ inputs.removeContainer }}
useGraphics: ${{ inputs.useGraphics }}
noGraphics: ${{ inputs.noGraphics }}
- name: "Cache the Library folder."
if: inputs.cacheVolume != null
uses: act/common/docker/docker-cp@master