mirror of
https://github.com/actions/cache.git
synced 2025-05-25 19:42:29 +00:00
Adds input for upload chunk size
This commit is contained in:
@ -63,3 +63,14 @@ export function getInputAsArray(
|
||||
.map(s => s.trim())
|
||||
.filter(x => x !== "");
|
||||
}
|
||||
|
||||
export function getInputAsInt(
|
||||
name: string,
|
||||
options?: core.InputOptions
|
||||
): number | undefined {
|
||||
const value = Number(core.getInput(name, options));
|
||||
if (Number.isNaN(value) || value < 0) {
|
||||
return undefined;
|
||||
}
|
||||
return value;
|
||||
}
|
||||
|
Reference in New Issue
Block a user