feat: add option to disable cache pruning (#134)
This PR adds an input to control whether or not the cache is pruned before saving. Closes #122 --------- Co-authored-by: Kevin Stillhammer <[email protected]> Co-authored-by: Charlie Marsh <[email protected]> Co-authored-by: Charlie Marsh <[email protected]>
This commit is contained in:
co-authored by
Kevin Stillhammer
Charlie Marsh
Charlie Marsh
parent
cf841c25e2
commit
3b9817b1bf
@@ -7,6 +7,7 @@ export const enableCache = core.getInput("enable-cache") === "true";
|
||||
export const cacheSuffix = core.getInput("cache-suffix") || "";
|
||||
export const cacheLocalPath = getCacheLocalPath();
|
||||
export const cacheDependencyGlob = core.getInput("cache-dependency-glob");
|
||||
export const pruneCache = core.getInput("prune-cache") === "true";
|
||||
export const toolBinDir = getToolBinDir();
|
||||
export const toolDir = getToolDir();
|
||||
export const githubToken = core.getInput("github-token");
|
||||
|
||||
Reference in New Issue
Block a user