fix push to cache
parent
d9daed7713
commit
74ffe357fe
|
|
@ -4544,7 +4544,7 @@ class TaskParameterSerializer {
|
||||||
// eslint-disable-next-line unicorn/no-array-reduce
|
// eslint-disable-next-line unicorn/no-array-reduce
|
||||||
array.push(secrets.reduce((x, y) => [...x, ...y]));
|
array.push(secrets.reduce((x, y) => [...x, ...y]));
|
||||||
}
|
}
|
||||||
const blocked = new Set(['0', 'length', 'prototype', '', 'projectPath', 'UNITY_VERSION']);
|
const blocked = new Set(['0', 'length', 'prototype', '', 'projectPath', 'unityVersion']);
|
||||||
array = array.filter((x) => !blocked.has(x.name));
|
array = array.filter((x) => !blocked.has(x.name));
|
||||||
array = array.map((x) => {
|
array = array.map((x) => {
|
||||||
x.name = __1.Input.ToEnvVarFormat(x.name);
|
x.name = __1.Input.ToEnvVarFormat(x.name);
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -37,7 +37,7 @@ export class TaskParameterSerializer {
|
||||||
array.push(secrets.reduce((x, y) => [...x, ...y]));
|
array.push(secrets.reduce((x, y) => [...x, ...y]));
|
||||||
}
|
}
|
||||||
|
|
||||||
const blocked = new Set(['0', 'length', 'prototype', '', 'projectPath', 'UNITY_VERSION']);
|
const blocked = new Set(['0', 'length', 'prototype', '', 'projectPath', 'unityVersion']);
|
||||||
|
|
||||||
array = array.filter((x) => !blocked.has(x.name));
|
array = array.filter((x) => !blocked.has(x.name));
|
||||||
array = array.map((x) => {
|
array = array.map((x) => {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue