AWS upload step implemented in cloud runner pipeline
parent
d7a17bb106
commit
189ffb865b
|
|
@ -4446,7 +4446,7 @@ class CloudRunnerCustomHooks {
|
|||
const gameCiCustomStepsPath = path_1.default.join(process.cwd(), `game-ci`, `steps`);
|
||||
const files = fs.readdirSync(gameCiCustomStepsPath);
|
||||
for (const file of files) {
|
||||
if (!cloud_runner_options_1.default.customStepFiles.includes(file)) {
|
||||
if (!cloud_runner_options_1.default.customHookFiles.includes(file)) {
|
||||
continue;
|
||||
}
|
||||
const fileContents = fs.readFileSync(path_1.default.join(gameCiCustomStepsPath, file), `utf8`);
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -45,7 +45,7 @@ export class CloudRunnerCustomHooks {
|
|||
const gameCiCustomStepsPath = path.join(process.cwd(), `game-ci`, `steps`);
|
||||
const files = fs.readdirSync(gameCiCustomStepsPath);
|
||||
for (const file of files) {
|
||||
if (!CloudRunnerOptions.customStepFiles.includes(file)) {
|
||||
if (!CloudRunnerOptions.customHookFiles.includes(file)) {
|
||||
continue;
|
||||
}
|
||||
const fileContents = fs.readFileSync(path.join(gameCiCustomStepsPath, file), `utf8`);
|
||||
|
|
|
|||
Loading…
Reference in New Issue