Setup folder variables in correct order

pull/289/head
Frostebite 2021-08-15 14:42:33 +00:00 committed by GitHub
parent 91c3ced4ea
commit 37b67c350a
3 changed files with 1 additions and 14 deletions

6
dist/index.js vendored
View File

@ -2174,12 +2174,6 @@ class RemoteBuilder {
try {
RemoteBuilder.setupBuildPlatform();
yield this.RemoteBuilderProviderPlatform.setupSharedBuildResources(this.buildId, this.buildParams, this.branchName, this.defaultSecrets);
this.buildPathFull = `/${buildVolumeFolder}/${this.buildId}`;
this.builderPathFull = `${this.buildPathFull}/builder`;
this.steamPathFull = `${this.buildPathFull}/steam`;
this.repoPathFull = `${this.buildPathFull}/${repositoryFolder}`;
this.projectPathFull = `${this.repoPathFull}/${this.buildParams.projectPath}`;
this.libraryFolderFull = `${this.projectPathFull}/Library`;
yield RemoteBuilder.SetupStep();
yield RemoteBuilder.BuildStep(baseImage);
yield RemoteBuilder.CompressionStep();

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -50,13 +50,6 @@ class RemoteBuilder {
this.defaultSecrets,
);
this.buildPathFull = `/${buildVolumeFolder}/${this.buildId}`;
this.builderPathFull = `${this.buildPathFull}/builder`;
this.steamPathFull = `${this.buildPathFull}/steam`;
this.repoPathFull = `${this.buildPathFull}/${repositoryFolder}`;
this.projectPathFull = `${this.repoPathFull}/${this.buildParams.projectPath}`;
this.libraryFolderFull = `${this.projectPathFull}/Library`;
await RemoteBuilder.SetupStep();
await RemoteBuilder.BuildStep(baseImage);
await RemoteBuilder.CompressionStep();