From be4a8ea450c90e503d4a8f73be663157d1bddc2b Mon Sep 17 00:00:00 2001 From: Sankalp Kotewar <98868223+kotewar@users.noreply.github.com> Date: Tue, 22 Nov 2022 06:03:49 +0000 Subject: [PATCH] . --- 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 7896566..7ef0ef5 100644 --- a/dist/restore/index.js +++ b/dist/restore/index.js @@ -48993,6 +48993,7 @@ function run() { //Check if user wants to save cache despite of failure in any previous job const saveCache = process.env[constants_1.Inputs.SaveCacheOnAnyFailure]; if (saveCache === "yes") { + core.debug(`save cache input variable is set to yes`); core.exportVariable(constants_1.Variables.SaveCacheOnAnyFailure, saveCache); core.info(`Input Variable ${constants_1.Variables.SaveCacheOnAnyFailure} is set to yes, the cache will be saved despite of any failure in the build.`); } diff --git a/src/restore.ts b/src/restore.ts index 065cfd4..29fb5e1 100644 --- a/src/restore.ts +++ b/src/restore.ts @@ -38,6 +38,7 @@ async function run(): Promise { //Check if user wants to save cache despite of failure in any previous job const saveCache = process.env[Inputs.SaveCacheOnAnyFailure]; if (saveCache === "yes") { + core.debug(`save cache input variable is set to yes`); core.exportVariable(Variables.SaveCacheOnAnyFailure, saveCache); core.info( `Input Variable ${Variables.SaveCacheOnAnyFailure} is set to yes, the cache will be saved despite of any failure in the build.`