-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
37 lines (37 loc) · 1.01 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
name: 'Run cdflow2'
description: 'Runs cdflow2 in current build'
inputs:
version:
description: 'cdflow2 version'
required: true
default: 'latest'
command:
description: 'cdflow2 command to run; empty to just download'
required: false
environment:
description: 'cdflow2 environment for deploy command'
required: false
newState:
description: 'create a new state file when deploying'
required: true
default: 'false'
planOnly:
description: 'show the terraform plan only, without applying it'
required: true
default: 'false'
appVersion:
description: 'version of app for deploy/release commands'
required: false
shellArgs:
description: 'additional shell arguments for shell command'
required: false
component:
description: 'component to act on'
required: false
githubToken:
description: The GitHub token used to create an authenticated client
default: ${{ github.token }}
required: false
runs:
using: 'node20'
main: 'dist/index.js'