generated from actions/hello-world-javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 46
/
action.yml
42 lines (42 loc) · 1003 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
30
31
32
33
34
35
36
37
38
39
40
41
42
name: 'Cache Wrt Build'
description: 'Cache builds to speed up openwrt compilation'
inputs:
ccache:
description: 'check if to cache ccache'
required: false
default: false
toolchain:
description: 'check if to cache toolchain'
required: false
default: true
skip:
description: 'check if to skip the compilation of toolchain'
required: false
default: true
clean:
description: 'set to clean cache'
required: false
default: false
prefix:
description: 'path prefix to openwrt build directory'
required: false
defalut: ''
mixkey:
description: 'mix a key to identify a cache when you build openwrt for different architecture'
required: false
defalut: ''
skip_saving:
description: 'skip saving'
required: false
defalut: false
outputs:
hit:
description: 'indicate cache found'
runs:
using: 'node20'
main: 'fetch.js'
post: 'save.js'
post-if: 'success()'
branding:
icon: 'archive'
color: 'gray-dark'