From 542cc932a9c1f5f54d88a4be3e31da140ea0e690 Mon Sep 17 00:00:00 2001 From: voidborn Date: Thu, 9 Apr 2026 16:43:15 +0330 Subject: [PATCH] Upload files to "/" --- action.yml | 31 ++++++++----------------------- 1 file changed, 8 insertions(+), 23 deletions(-) diff --git a/action.yml b/action.yml index 21be5f0..a429a3f 100644 --- a/action.yml +++ b/action.yml @@ -1,38 +1,23 @@ -name: 'Restore Cache' -description: 'Restore Cache artifacts like dependencies and build outputs to improve workflow execution time' +name: 'Save a cache' +description: 'Save Cache artifacts like dependencies and build outputs to improve workflow execution time' author: 'GitHub' inputs: path: - description: 'A list of files, directories, and wildcard patterns to restore' + description: 'A list of files, directories, and wildcard patterns to cache' required: true key: - description: 'An explicit key for restoring the cache' + description: 'An explicit key for saving the cache' required: true - restore-keys: - description: 'An ordered list of keys to use for restoring stale cache if no cache hit occurred for key. Note `cache-hit` returns false in this case.' + upload-chunk-size: + description: 'The chunk size used to split up large files during upload, in bytes' required: false enableCrossOsArchive: - description: 'An optional boolean when enabled, allows windows runners to restore caches that were saved on other platforms' + description: 'An optional boolean when enabled, allows windows runners to save caches that can be restored on other platforms' default: 'false' required: false - fail-on-cache-miss: - description: 'Fail the workflow if cache entry is not found' - default: 'false' - required: false - lookup-only: - description: 'Check if a cache entry exists for the given input(s) (key, restore-keys) without downloading the cache' - default: 'false' - required: false -outputs: - cache-hit: - description: 'A boolean value to indicate an exact match was found for the primary key' - cache-primary-key: - description: 'A resolved cache key for which cache match was attempted' - cache-matched-key: - description: 'Key of the cache that was restored, it could either be the primary key on cache-hit or a partial/complete match of one of the restore keys' runs: using: 'node16' - main: '../dist/restore-only/index.js' + main: '../dist/save-only/index.js' branding: icon: 'archive' color: 'gray-dark'