Always use full env vars to include tests

pull/310/head
Frostebite 2021-12-20 19:57:52 +00:00
parent aa899843e8
commit c9fa89bfed
3 changed files with 3 additions and 3 deletions

2
dist/index.js vendored
View File

@ -2673,7 +2673,7 @@ class CustomWorkflow {
}; };
return secret; return secret;
}); });
yield cloud_runner_state_1.CloudRunnerState.CloudRunnerProviderPlatform.runBuildTask(cloud_runner_state_1.CloudRunnerState.buildGuid, step['image'], step['commands'], `/${cloud_runner_state_1.CloudRunnerState.buildVolumeFolder}`, `/${cloud_runner_state_1.CloudRunnerState.buildVolumeFolder}`, cloud_runner_state_1.CloudRunnerState.defaultGitShaEnvironmentVariable, [...cloud_runner_state_1.CloudRunnerState.defaultSecrets, ...stepSecrets]); yield cloud_runner_state_1.CloudRunnerState.CloudRunnerProviderPlatform.runBuildTask(cloud_runner_state_1.CloudRunnerState.buildGuid, step['image'], step['commands'], `/${cloud_runner_state_1.CloudRunnerState.buildVolumeFolder}`, `/${cloud_runner_state_1.CloudRunnerState.buildVolumeFolder}`, cloud_runner_state_1.CloudRunnerState.readBuildEnvironmentVariables(), [...cloud_runner_state_1.CloudRunnerState.defaultSecrets, ...stepSecrets]);
} }
} }
catch (error) { catch (error) {

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -24,7 +24,7 @@ export class CustomWorkflow {
step['commands'], step['commands'],
`/${CloudRunnerState.buildVolumeFolder}`, `/${CloudRunnerState.buildVolumeFolder}`,
`/${CloudRunnerState.buildVolumeFolder}`, `/${CloudRunnerState.buildVolumeFolder}`,
CloudRunnerState.defaultGitShaEnvironmentVariable, CloudRunnerState.readBuildEnvironmentVariables(),
[...CloudRunnerState.defaultSecrets, ...stepSecrets], [...CloudRunnerState.defaultSecrets, ...stepSecrets],
); );
} }