fixing library warning in setup step
parent
1db134b416
commit
223000f9c2
|
|
@ -2727,7 +2727,6 @@ class TaskParameterSerializer {
|
|||
array = array.map((x) => {
|
||||
x.name = __1.Input.ToEnvVarFormat(x.name);
|
||||
x.value = `${x.value}`;
|
||||
core.getOutput(x);
|
||||
core.setOutput(x.name, x.value);
|
||||
return x;
|
||||
});
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -41,7 +41,6 @@ export class TaskParameterSerializer {
|
|||
array = array.map((x) => {
|
||||
x.name = Input.ToEnvVarFormat(x.name);
|
||||
x.value = `${x.value}`;
|
||||
core.getOutput(x);
|
||||
core.setOutput(x.name, x.value);
|
||||
return x;
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in New Issue