-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathaction.yml
52 lines (40 loc) · 1.2 KB
/
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
43
44
45
46
47
48
49
50
51
52
name: action-cache-http
description: Cache dependencies over http
inputs:
version:
description: What version of nodejs or main language you are using
default: latest
required: true
lock_file:
description: Provide the lock file path e.g yarn.lock, composer.lock
required: true
install_command:
description: What is the full install command
required: true
operating_dir:
description: Which dir to operate into (default root dir of repo)
required: false
disable_compression:
description: Set to `true` to disable compression to improve performance. Uses more storage.
required: false
destination_folder:
description: destination_folder e.g. node_modules, vendor
required: true
cache_http_api:
description: Where is your cache service installed https://github.com/kevincobain2000/cache-http
required: true
http_proxy:
description: Pass proxy if any
required: false
basic_auth_username:
description: Basic auth username if any
required: false
basic_auth_password:
description: Basic auth password if any
required: false
runs:
using: 'node20'
main: 'index.js'
branding:
icon: 'check-square'
color: 'purple'