diff --git a/dist/restore/index.js b/dist/restore/index.js index 5426bc7..710969c 100644 --- a/dist/restore/index.js +++ b/dist/restore/index.js @@ -48992,6 +48992,7 @@ function run() { if (saveCache === "yes") { core.saveState(constants_1.State.SaveCache, saveCache); core.info(`Input save-cache-on-any-failure is set to yes, the cache will be saved despite of any failure in the build.`); + core.info(core.getState(constants_1.State.SaveCache)); } if (!cacheKey) { if (core.getInput(constants_1.Inputs.StrictRestore) == "true") { diff --git a/src/restore.ts b/src/restore.ts index 4814a83..ad2ef52 100644 --- a/src/restore.ts +++ b/src/restore.ts @@ -42,6 +42,7 @@ async function run(): Promise { core.info( `Input save-cache-on-any-failure is set to yes, the cache will be saved despite of any failure in the build.` ); + core.info(core.getState(State.SaveCache)); } if (!cacheKey) {