-
Notifications
You must be signed in to change notification settings - Fork 3
/
action.yml
51 lines (41 loc) · 1.09 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
name: "install with cpanminus"
description: "install Perl Modules with App::cpanminus"
branding:
icon: "arrow-down"
color: "blue"
inputs:
install:
description: "List of modules or distributions to install [seperated by newline]"
required: false
cpanfile:
description: "Use a cpanfile to install modules"
required: false
tests:
description: "Run or not the unit tests"
required: false
default: false
verbose:
description: "Add -v to cpanm"
required: false
default: false
args:
description: "Extra args used passed to install command"
required: false
sudo:
description: "Perform installations as root"
required: false
default: true
perl:
description: "Path of perl to use default to current PATH"
required: false
default: "perl"
path:
description: "Path where to install cpanm: the string can use $Config values"
required: false
default: "$Config{installsitescript}/cpanm"
local-lib:
description: "Path where to install modules"
required: false
runs:
using: "node20"
main: "dist/index.js"