From 0aec05f2c77128340e85bc974f1638654b5650c4 Mon Sep 17 00:00:00 2001 From: Sankalp Kotewar <98868223+kotewar@users.noreply.github.com> Date: Mon, 21 Nov 2022 09:48:36 +0000 Subject: [PATCH] Updated restore code to print logs --- dist/restore/index.js | 1 + src/restore.ts | 1 + 2 files changed, 2 insertions(+) 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) {