shorter names

pull/524/head
Frostebite 2023-03-20 00:04:38 +00:00
parent 082df959ae
commit 7e91369f79
3 changed files with 3 additions and 3 deletions

2
dist/index.js generated vendored
View File

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

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long

View File

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