cache/restore/action.yml

26 lines
972 B
YAML
Raw Normal View History

2022-12-09 01:39:12 +08:00
name: 'Restore Only 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:
description: 'The same list of files, directories, and wildcard patterns to restore cache that were used while saving it'
2022-11-25 17:16:56 +08:00
required: true
key:
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-09 21:56:33 +08:00
inputted-key:
2022-12-09 01:39:12 +08:00
description: 'Key passed in the input to use in subsequent steps of the workflow'
matched-key:
description: 'Cache key restored'
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'