pull/310/head
Frostebite 2021-12-31 16:08:29 +00:00
parent 0fe8e868e6
commit 1a54f4ef6c
3 changed files with 7 additions and 7 deletions

6
dist/index.js vendored
View File

@ -2812,9 +2812,9 @@ class SetupStep {
apk add unzip zip git-lfs jq tree nodejs -q
export GIT_DISCOVERY_ACROSS_FILESYSTEM=1
mkdir -p ${cloud_runner_state_1.CloudRunnerState.builderPathFull}
git clone -b ${cloud_runner_state_1.CloudRunnerState.branchName} ${cloud_runner_state_1.CloudRunnerState.unityBuilderRepoUrl} "${cloud_runner_state_1.CloudRunnerState.builderPathFull.replace(`/`, `\\`)}"
chmod +x ${path_1.default.join(cloud_runner_state_1.CloudRunnerState.builderPathFull, 'dist', `index.js`)}
node ${path_1.default.join(cloud_runner_state_1.CloudRunnerState.builderPathFull, 'dist', `index.js`)} -m remote-cli
git clone -b ${cloud_runner_state_1.CloudRunnerState.branchName} ${cloud_runner_state_1.CloudRunnerState.unityBuilderRepoUrl} "${cloud_runner_state_1.CloudRunnerState.builderPathFull.replace(/\//g, `\\`)}"
chmod +x ${path_1.default.join(cloud_runner_state_1.CloudRunnerState.builderPathFull, 'dist', `index.js`).replace(/\//g, '')}
node ${path_1.default.join(cloud_runner_state_1.CloudRunnerState.builderPathFull, 'dist', `index.js`).replace(/\//g, '')} -m remote-cli
`, `/${cloud_runner_state_1.CloudRunnerState.buildVolumeFolder}`, `/${cloud_runner_state_1.CloudRunnerState.buildVolumeFolder}/`, environmentVariables, secrets);
}
catch (error) {

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -38,9 +38,9 @@ export class SetupStep implements StepInterface {
mkdir -p ${CloudRunnerState.builderPathFull}
git clone -b ${CloudRunnerState.branchName} ${
CloudRunnerState.unityBuilderRepoUrl
} "${CloudRunnerState.builderPathFull.replace(`/`, `\\`)}"
chmod +x ${path.join(CloudRunnerState.builderPathFull, 'dist', `index.js`)}
node ${path.join(CloudRunnerState.builderPathFull, 'dist', `index.js`)} -m remote-cli
} "${CloudRunnerState.builderPathFull.replace(/\//g, `\\`)}"
chmod +x ${path.join(CloudRunnerState.builderPathFull, 'dist', `index.js`).replace(/\//g, '')}
node ${path.join(CloudRunnerState.builderPathFull, 'dist', `index.js`).replace(/\//g, '')} -m remote-cli
`,
`/${CloudRunnerState.buildVolumeFolder}`,
`/${CloudRunnerState.buildVolumeFolder}/`,