refactoring remote builder

pull/263/head
Frostebite 2021-05-02 04:45:39 +01:00
parent b682e2140f
commit 887594df73
3 changed files with 3 additions and 3 deletions

2
dist/index.js vendored
View File

@ -1297,7 +1297,7 @@ class AWS {
}
core.info(taskDefCloudFormation);
const mappedSecrets = new Array();
mappedSecrets.push(secrets);
mappedSecrets.push(...secrets);
mappedSecrets.map((x) => {
return { ParameterKey: x.ParameterKey, ParameterValue: x.ParameterValue };
});

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -134,7 +134,7 @@ class AWS {
core.info(taskDefCloudFormation);
const mappedSecrets = new Array();
mappedSecrets.push(secrets);
mappedSecrets.push(...secrets);
mappedSecrets.map((x) => {
return { ParameterKey: x.ParameterKey, ParameterValue: x.ParameterValue };
});