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' diff --git a/save/action.yml b/save/action.yml index 90f681d..2835622 100644 --- a/save/action.yml +++ b/save/action.yml @@ -14,12 +14,20 @@ 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' runs: using: 'node16' - main: 'dist/save/index.js' + main: '../dist/save/index.js' branding: icon: 'archive' color: 'gray-dark'