better named tests and log local-docker params
parent
3377ebfda5
commit
f029159324
|
|
@ -3611,12 +3611,14 @@ class LocalDockerCloudRunner {
|
|||
const { workspace, actionFolder } = model_1.Action;
|
||||
let myOutput = '';
|
||||
const content = [
|
||||
...secrets.map((x) => {
|
||||
...secrets.map((x, index) => {
|
||||
secrets[x.EnvironmentVariable] = x.ParameterValue;
|
||||
delete secrets[index];
|
||||
return;
|
||||
}),
|
||||
...environment.map((x) => {
|
||||
...environment.map((x, index) => {
|
||||
environment[x.name] = x.value;
|
||||
delete environment[index];
|
||||
return;
|
||||
}),
|
||||
];
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -62,13 +62,15 @@ class LocalDockerCloudRunner implements ProviderInterface {
|
|||
const { workspace, actionFolder } = Action;
|
||||
let myOutput = '';
|
||||
const content = [
|
||||
...secrets.map((x) => {
|
||||
...secrets.map((x, index) => {
|
||||
secrets[x.EnvironmentVariable] = x.ParameterValue;
|
||||
delete secrets[index];
|
||||
|
||||
return;
|
||||
}),
|
||||
...environment.map((x) => {
|
||||
...environment.map((x, index) => {
|
||||
environment[x.name] = x.value;
|
||||
delete environment[index];
|
||||
|
||||
return;
|
||||
}),
|
||||
|
|
|
|||
Loading…
Reference in New Issue