cache/save/action.yml

23 lines
681 B
YAML
Raw Normal View History

2022-12-08 18:39:12 +01:00
name: 'Save Only Cache'
2022-11-25 10:16:56 +01: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 10:16:56 +01:00
required: true
key:
description: 'An explicit key for saving the cache'
2022-11-25 10:16:56 +01: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 14:56:33 +01:00
restored-key:
2022-12-08 18:39:12 +01:00
description: 'Cache key restored from the restore action'
required: false
2022-11-25 10:16:56 +01:00
runs:
using: 'node16'
2022-12-08 18:39:12 +01:00
main: '../dist/save-only/index.js'
2022-11-25 10:16:56 +01:00
branding:
icon: 'archive'
2022-12-08 18:39:12 +01:00
color: 'gray-dark'