cache/save/action.yml

23 lines
680 B
YAML
Raw Normal View History

2022-12-09 00:39:12 +07:00
name: 'Save Only Cache'
2022-11-25 16:16:56 +07:00
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 cache'
2022-11-25 16:16:56 +07:00
required: true
key:
description: 'An explicit key for saving the cache'
2022-11-25 16:16:56 +07:00
required: true
upload-chunk-size:
description: 'The chunk size used to split up large files during upload, in bytes'
required: false
2022-12-09 00:39:12 +07:00
matched-key:
description: 'Cache key restored from the restore action'
required: false
2022-11-25 16:16:56 +07:00
runs:
using: 'node16'
2022-12-09 00:39:12 +07:00
main: '../dist/save-only/index.js'
2022-11-25 16:16:56 +07:00
branding:
icon: 'archive'
2022-12-09 00:39:12 +07:00
color: 'gray-dark'