forked from satackey/action-docker-layer-caching
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
29 lines (26 loc) · 786 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name: Docker Layer Caching
description: Cache images created between main run and post run
branding:
icon: layers
color: blue
inputs:
key:
description: An explicit key for restoring and saving the cache
required: true
default: docker-layer-caching-${{ github.workflow }}-{hash}
restore-keys:
description: An ordered list of keys to use for restoring the cache if no cache hit occurred for key
required: false
default: docker-layer-caching-${{ github.workflow }}-
concurrency:
description: The number of concurrency when restoring and saving layers
required: true
default: '4'
skip-save:
description: Skip saving layers in the post step
required: false
default: 'false'
runs:
using: node12
main: main.ts
post: post.ts