diff --git a/unity-command/action.yaml b/unity-command/action.yaml index 1effe39..d3ce59d 100644 --- a/unity-command/action.yaml +++ b/unity-command/action.yaml @@ -43,6 +43,13 @@ inputs: runs: using: "composite" steps: + - name: "Print Inputs" + run: | + NAME="Unity Command" + echo "::group::$NAME - Inputs" + echo "${{ toJSON(inputs) }}" + echo "::endgroup::" + shell: bash - name: "Get Unity container name." id: getContainer uses: act/unity/unity-get-container@master @@ -77,7 +84,6 @@ runs: - name: "Run Unity command." uses: act/unity/unity@master env: - UNITY_CONTAINER: ${{ steps.getContainer.outputs.container }} SSH_PUBLIC_KEY: ${{ inputs.sshPublicKey }} SSH_PRIVATE_KEY: ${{ inputs.sshPrivateKey }} CATCH_ERRORS: ${{ inputs.catchErrors }} diff --git a/unity/action.yaml b/unity/action.yaml index db11724..1819789 100644 --- a/unity/action.yaml +++ b/unity/action.yaml @@ -20,8 +20,7 @@ inputs: 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 - image: docker://${{ env.UNITY_CONTAINER }} + image: docker://unityci/base:latest args: - ${{ inputs.serial }} - ${{ inputs.email }}