mirror of
https://github.com/actions/cache.git
synced 2024-11-14 01:51:46 +01:00
Make 'update' optional
This commit is contained in:
parent
d5f1550948
commit
82f8348041
1 changed files with 4 additions and 2 deletions
|
@ -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 a new issue