This commit is contained in:
2023-03-24 00:33:02 -07:00
parent 3ecd5d5e2c
commit f880c21a0b

View File

@@ -27,6 +27,10 @@ inputs:
cacheVolume: cacheVolume:
description: "Name of the volume to cache the Library folder to." description: "Name of the volume to cache the Library folder to."
required: false required: false
removeContainer:
description: "Remove the mock container after building."
required: false
default: "false"
runs: runs:
using: "composite" using: "composite"
steps: steps:
@@ -55,6 +59,7 @@ runs:
email: ${{ inputs.email }} email: ${{ inputs.email }}
password: ${{ inputs.password }} password: ${{ inputs.password }}
command: -projectPath ${{ inputs.projectPath }} -buildTarget ${{ steps.getTarget.outputs.buildTarget }} ${{ inputs.command }} command: -projectPath ${{ inputs.projectPath }} -buildTarget ${{ steps.getTarget.outputs.buildTarget }} ${{ inputs.command }}
removeContainer: ${{ inputs.removeContainer }}
- name: "Cache the Library folder." - name: "Cache the Library folder."
if: ${{ inputs.cacheVolume }} if: ${{ inputs.cacheVolume }}
uses: act/common/docker/docker-cp@master uses: act/common/docker/docker-cp@master