fix push to cache

pull/419/head
Frostebite 2022-09-15 17:41:05 +01:00
parent d9daed7713
commit 74ffe357fe
3 changed files with 3 additions and 3 deletions

2
dist/index.js vendored
View File

@ -4544,7 +4544,7 @@ class TaskParameterSerializer {
// eslint-disable-next-line unicorn/no-array-reduce
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.map((x) => {
x.name = __1.Input.ToEnvVarFormat(x.name);

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -37,7 +37,7 @@ export class TaskParameterSerializer {
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.map((x) => {