diff --git a/dist/index.js b/dist/index.js index e15aa1a9..0be51b59 100644 Binary files a/dist/index.js and b/dist/index.js differ diff --git a/dist/index.js.map b/dist/index.js.map index 1347af3f..05b95486 100644 Binary files a/dist/index.js.map and b/dist/index.js.map differ diff --git a/dist/platforms/ubuntu/steps/activate.sh b/dist/platforms/ubuntu/steps/activate.sh index 49ecc376..9c9e3522 100755 --- a/dist/platforms/ubuntu/steps/activate.sh +++ b/dist/platforms/ubuntu/steps/activate.sh @@ -18,7 +18,8 @@ if [[ -n "$UNITY_SERIAL" && -n "$UNITY_EMAIL" && -n "$UNITY_PASSWORD" ]]; then -quit \ -serial "$UNITY_SERIAL" \ -username "$UNITY_EMAIL" \ - -password "$UNITY_PASSWORD" + -password "$UNITY_PASSWORD" \ + -projectPath "/BlankProject" # Store the exit code from the verify command UNITY_EXIT_CODE=$? diff --git a/dist/platforms/ubuntu/steps/return_license.sh b/dist/platforms/ubuntu/steps/return_license.sh index f2ee12c1..77eb0e14 100755 --- a/dist/platforms/ubuntu/steps/return_license.sh +++ b/dist/platforms/ubuntu/steps/return_license.sh @@ -20,7 +20,8 @@ elif [[ -n "$UNITY_SERIAL" ]]; then unity-editor \ -logFile /dev/stdout \ -quit \ - -returnlicense + -returnlicense \ + -projectPath "/BlankProject" fi # Return to previous working directory diff --git a/src/model/docker.ts b/src/model/docker.ts index cd33f863..77645666 100644 --- a/src/model/docker.ts +++ b/src/model/docker.ts @@ -73,6 +73,7 @@ class Docker { --volume "${actionFolder}/platforms/ubuntu/steps:/steps:z" \ --volume "${actionFolder}/platforms/ubuntu/entrypoint.sh:/entrypoint.sh:z" \ --volume "${actionFolder}/unity-config:/usr/share/unity3d/config/:z" \ + --volume "${actionFolder}/BlankProject":"/BlankProject:z" \ --cpus=${dockerCpuLimit} \ --memory=${dockerMemoryLimit} \ ${sshAgent ? `--volume ${sshAgent}:/ssh-agent` : ''} \