2022-12-12 21:20:18 +08:00
name : 'Restore Cache'
2022-11-25 17:16:56 +08:00
description : 'Restore Cache artifacts like dependencies and build outputs to improve workflow execution time'
author : 'GitHub'
inputs :
path :
2022-12-12 21:20:09 +08:00
description : 'A list of files, directories, and wildcard patterns to restore'
2022-11-25 17:16:56 +08:00
required : true
key :
2022-12-01 16:27:08 +08:00
description : 'An explicit key for restoring the cache'
2022-11-25 17:16:56 +08:00
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.'
required : false
outputs :
cache-hit :
description : 'A boolean value to indicate an exact match was found for the primary key'
2022-12-11 21:33:36 +08:00
cache-primary-key :
2022-12-12 21:19:59 +08:00
description : 'A resolved cache key for which cache match was attempted'
2022-12-14 17:17:49 +08:00
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'
2022-11-25 17:16:56 +08:00
runs :
using : 'node16'
2022-12-09 01:39:12 +08:00
main : '../dist/restore-only/index.js'
2022-11-25 17:16:56 +08:00
branding :
icon : 'archive'
2022-12-09 01:39:12 +08:00
color : 'gray-dark'