mirror of
https://github.com/actions/cache.git
synced 2025-01-24 09:07:16 +07:00
Make 'update' optional
This commit is contained in:
parent
d5f1550948
commit
82f8348041
@ -13,13 +13,15 @@ interface CacheInput {
|
||||
path: string;
|
||||
key: string;
|
||||
restoreKeys?: string[];
|
||||
update: string;
|
||||
update?: string;
|
||||
}
|
||||
|
||||
export function setInputs(input: CacheInput): void {
|
||||
setInput(Inputs.Path, input.path);
|
||||
setInput(Inputs.Key, input.key);
|
||||
setInput(Inputs.Update, input.update);
|
||||
input.update
|
||||
? setInput(Inputs.Update, input.update)
|
||||
: setInput(Inputs.Update, "false");
|
||||
input.restoreKeys &&
|
||||
setInput(Inputs.RestoreKeys, input.restoreKeys.join("\n"));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user