pull/289/head
Frostebite 2021-08-15 14:46:49 +00:00 committed by GitHub
parent 37b67c350a
commit 40dd6f08e2
3 changed files with 3 additions and 8 deletions

3
dist/index.js vendored
View File

@ -2178,9 +2178,8 @@ class RemoteBuilder {
yield RemoteBuilder.BuildStep(baseImage);
yield RemoteBuilder.CompressionStep();
yield RemoteBuilder.UploadArtifacts();
if (this.SteamDeploy) {
if (this.SteamDeploy)
yield RemoteBuilder.DeployToSteam();
}
yield this.RemoteBuilderProviderPlatform.cleanupSharedBuildResources(this.buildId, this.buildParams, this.branchName, this.defaultSecrets);
}
catch (error) {

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -42,21 +42,17 @@ class RemoteBuilder {
RemoteBuilder.setupDefaultSecrets();
try {
RemoteBuilder.setupBuildPlatform();
await this.RemoteBuilderProviderPlatform.setupSharedBuildResources(
this.buildId,
this.buildParams,
this.branchName,
this.defaultSecrets,
);
await RemoteBuilder.SetupStep();
await RemoteBuilder.BuildStep(baseImage);
await RemoteBuilder.CompressionStep();
await RemoteBuilder.UploadArtifacts();
if (this.SteamDeploy) {
await RemoteBuilder.DeployToSteam();
}
if (this.SteamDeploy) await RemoteBuilder.DeployToSteam();
await this.RemoteBuilderProviderPlatform.cleanupSharedBuildResources(
this.buildId,
this.buildParams,