AWS upload step implemented in cloud runner pipeline

pull/437/head
Frostebite 2022-10-13 20:10:47 +01:00
parent 189ffb865b
commit b575efdea9
3 changed files with 3 additions and 1 deletions

1
dist/index.js vendored
View File

@ -4569,6 +4569,7 @@ class CloudRunnerCustomSteps {
const files = fs.readdirSync(gameCiCustomStepsPath);
for (const file of files) {
if (!cloud_runner_options_1.default.customStepFiles.includes(file)) {
remote_client_logger_1.RemoteClientLogger.log(`Skipping CustomStepFile: ${file} (not in ${cloud_runner_options_1.default.customStepFiles})`);
continue;
}
const fileContents = fs.readFileSync(path_1.default.join(gameCiCustomStepsPath, file), `utf8`);

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -19,6 +19,7 @@ export class CloudRunnerCustomSteps {
const files = fs.readdirSync(gameCiCustomStepsPath);
for (const file of files) {
if (!CloudRunnerOptions.customStepFiles.includes(file)) {
RemoteClientLogger.log(`Skipping CustomStepFile: ${file} (not in ${CloudRunnerOptions.customStepFiles})`);
continue;
}
const fileContents = fs.readFileSync(path.join(gameCiCustomStepsPath, file), `utf8`);