-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
action.yml
36 lines (36 loc) · 1.19 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
name: 'Cake Action'
description: 'Run a Cake script as part of your build.'
author: 'Enrico Campidoglio'
branding:
icon: 'box'
color: 'yellow'
inputs:
script-path:
description: 'The path of the Cake script to run.'
required: false
default: 'build.cake'
target:
description: 'The name of the task to execute. Note that this argument must be supported by the script.'
required: false
verbosity:
description: 'The verbosity level with which to run the script. Valid values are: Quiet, Minimal, Normal, Verbose or Diagnostic.'
required: false
default: 'Normal'
dry-run:
description: 'Tells Cake to do a dry run of the script.'
required: false
default: 'false'
arguments:
description: 'Any custom parameters to pass to the script. Multiple parameters are defined on separate lines.'
required: false
cake-version:
description: 'The version of Cake to install. Either a specific version, "latest" (default) or "tool-manifest".'
default: 'latest'
required: false
cake-bootstrap:
description: 'Flag for if Cake modules should be installed/bootstrapped.'
required: false
default: 'false'
runs:
using: 'node20'
main: 'dist/index.js'