fixing library warning in setup step

pull/310/head
Frostebite 2022-01-02 22:56:42 +00:00
parent 1db134b416
commit 223000f9c2
3 changed files with 1 additions and 3 deletions

1
dist/index.js vendored
View File

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

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

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