From f4a5fe8db9227c95e5652eec8e065832f1b4b4d9 Mon Sep 17 00:00:00 2001 From: Roni Frantchi Date: Wed, 16 Dec 2020 08:32:11 +0200 Subject: [PATCH] cr: properly check for true string --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 58e366c..2ae75fb 100644 --- a/action.yml +++ b/action.yml @@ -21,7 +21,7 @@ runs: using: 'node12' main: 'dist/restore/index.js' post: 'dist/save/index.js' - post-if: 'success() && !env.CACHE_SKIP_SAVE' + post-if: 'success() && env.CACHE_SKIP_SAVE !== "true"' branding: icon: 'archive' color: 'gray-dark'