AWS upload step implemented in cloud runner pipeline

pull/437/head
Frostebite 2022-10-13 19:57:00 +01:00
parent d7a17bb106
commit 189ffb865b
3 changed files with 3 additions and 3 deletions

2
dist/index.js vendored
View File

@ -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`);

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -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`);