From b360b35604efdf990b57ccc427ab0f6ab6be276e Mon Sep 17 00:00:00 2001 From: Sankalp Kotewar <98868223+kotewar@users.noreply.github.com> Date: Mon, 21 Nov 2022 08:46:56 +0000 Subject: [PATCH] Updated action.yml --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 95115bf..8323a71 100644 --- a/action.yml +++ b/action.yml @@ -20,7 +20,7 @@ inputs: default: "false" save-cache-on-any-failure: description: 'Save build cache despite of failure in the job' - default: "false" + default: "no" outputs: cache-hit: description: 'A boolean value to indicate an exact match was found for the primary key' @@ -28,7 +28,7 @@ runs: using: 'node16' main: 'dist/restore/index.js' post: 'dist/save/index.js' - post-if: success() || inputs.save-cache-on-any-failure == 'yes' + post-if: success() || inputs.save-cache-on-any-failure == "yes" branding: icon: 'archive' color: 'gray-dark'