From 80a0ee3e72c9bab31a7461e3ef44d4ddfd60ac23 Mon Sep 17 00:00:00 2001 From: Sankalp Kotewar <98868223+kotewar@users.noreply.github.com> Date: Mon, 14 Nov 2022 16:08:28 +0530 Subject: [PATCH 1/3] Update action.yml --- restore/action.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/restore/action.yml b/restore/action.yml index 87319d3..7f27be0 100644 --- a/restore/action.yml +++ b/restore/action.yml @@ -15,6 +15,14 @@ inputs: upload-chunk-size: description: 'The chunk size used to split up large files during upload, in bytes' required: false + skip-save: + description: 'To save cache after the build or not' + required: false + default: 'no' + skip-restore: + description: 'To restore cache before the build or not' + required: false + default: 'no' outputs: cache-hit: description: 'A boolean value to indicate an exact match was found for the primary key' From c1a4468eba0c80a14b68e828e434f595682c9997 Mon Sep 17 00:00:00 2001 From: Sankalp Kotewar <98868223+kotewar@users.noreply.github.com> Date: Mon, 14 Nov 2022 16:08:47 +0530 Subject: [PATCH 2/3] Update action.yml --- save/action.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/save/action.yml b/save/action.yml index 90f681d..a17e9c2 100644 --- a/save/action.yml +++ b/save/action.yml @@ -14,6 +14,14 @@ inputs: upload-chunk-size: description: 'The chunk size used to split up large files during upload, in bytes' required: false + skip-save: + description: 'To save cache after the build or not' + required: false + default: 'no' + skip-restore: + description: 'To restore cache before the build or not' + required: false + default: 'no' outputs: cache-hit: description: 'A boolean value to indicate an exact match was found for the primary key' From 7952f59166c22782e74d8a0bbae41268da9d14d4 Mon Sep 17 00:00:00 2001 From: Sankalp Kotewar <98868223+kotewar@users.noreply.github.com> Date: Mon, 14 Nov 2022 16:13:34 +0530 Subject: [PATCH 3/3] Update action.yml --- save/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/save/action.yml b/save/action.yml index a17e9c2..2835622 100644 --- a/save/action.yml +++ b/save/action.yml @@ -27,7 +27,7 @@ outputs: description: 'A boolean value to indicate an exact match was found for the primary key' runs: using: 'node16' - main: 'dist/save/index.js' + main: '../dist/save/index.js' branding: icon: 'archive' color: 'gray-dark'