shorter names
parent
082df959ae
commit
7e91369f79
|
@ -2964,7 +2964,7 @@ class LocalDockerCloudRunner {
|
|||
const { workspace, actionFolder } = __1.Action;
|
||||
const content = [];
|
||||
for (const x of secrets) {
|
||||
content.push({ name: x.ParameterKey, value: x.ParameterValue });
|
||||
content.push({ name: x.EnvironmentVariable, value: x.ParameterValue });
|
||||
}
|
||||
for (const x of environment) {
|
||||
content.push({ name: x.name, value: x.value });
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -89,7 +89,7 @@ class LocalDockerCloudRunner implements ProviderInterface {
|
|||
const { workspace, actionFolder } = Action;
|
||||
const content: any[] = [];
|
||||
for (const x of secrets) {
|
||||
content.push({ name: x.ParameterKey, value: x.ParameterValue });
|
||||
content.push({ name: x.EnvironmentVariable, value: x.ParameterValue });
|
||||
}
|
||||
for (const x of environment) {
|
||||
content.push({ name: x.name, value: x.value });
|
||||
|
|
Loading…
Reference in New Issue