diff --git a/restore/action.yml b/restore/action.yml index 175f7e1..e2292f6 100644 --- a/restore/action.yml +++ b/restore/action.yml @@ -12,6 +12,9 @@ inputs: restore-keys: description: 'An ordered list of keys to use for restoring stale cache if no cache hit occurred for key. Note `cache-hit` returns false in this case.' required: false + strict-restore: + description: 'Fail the workflow if the cache is not found for the given key.' + required: false outputs: cache-hit: description: 'A boolean value to indicate an exact match was found for the primary key' diff --git a/src/constants.ts b/src/constants.ts index 133f47d..058493c 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -2,7 +2,8 @@ export enum Inputs { Key = "key", Path = "path", RestoreKeys = "restore-keys", - UploadChunkSize = "upload-chunk-size" + UploadChunkSize = "upload-chunk-size", + StrictRestore = "strict-restore" } export enum Outputs { diff --git a/src/restore.ts b/src/restore.ts index 5bc17fa..3142e3f 100644 --- a/src/restore.ts +++ b/src/restore.ts @@ -51,6 +51,13 @@ async function run(): Promise { const isExactKeyMatch = utils.isExactKeyMatch(primaryKey, cacheKey); utils.setCacheHitOutput(isExactKeyMatch); + + if (!isExactKeyMatch && core.getInput(Inputs.StrictRestore) == "true") { + core.info( + "Cache with exact key not found, hence exiting the workflow as strict-restore is set to true" + ); + return; + } core.info(`Cache restored from key: ${cacheKey}`); } catch (error: unknown) { core.setFailed((error as Error).message);