running git lfs clone

pull/218/head
mdugdale 2021-02-14 20:06:16 +00:00
parent efe65d23aa
commit 09fc1fc127
1 changed files with 5 additions and 1 deletions

View File

@ -47,7 +47,11 @@ class AWS {
baseImage.toString(),
['/bin/sh'],
['-c', `
if [$GITHUB_TOKEN -eq 'Secret']; then unset GITHUB_TOKEN; fi;
if [$UNITY_LICENSE -eq 'Secret']; then unset UNITY_LICENSE; fi;
if [$ANDROID_KEYSTORE_BASE64 -eq 'Secret']; then unset ANDROID_KEYSTORE_BASE64; fi;
if [$ANDROID_KEYSTORE_PASS -eq 'Secret']; then unset ANDROID_KEYSTORE_PASS; fi;
if [$ANDROID_KEYALIAS_PASS -eq 'Secret']; then unset ANDROID_KEYALIAS_PASS; fi;
cp -r /data/$BUILD_ID/builder/action/default-build-script /UnityBuilderAction;
cp -r /data/$BUILD_ID/builder/action/entrypoint.sh /entrypoint.sh;
cp -r /data/$BUILD_ID/builder/action/steps /steps;