generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
38 lines (34 loc) · 955 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
name: 'codeploy-lambda'
description: 'Deploy lambda function(s) using AWS CodeDeploy'
author: 'Geert Wille'
# Add your action's branding here. This will appear on the GitHub Marketplace.
branding:
icon: 'upload-cloud'
color: 'blue'
# Define your inputs here.
inputs:
applicationName:
description: 'The name of the CodeDeploy application'
required: true
deploymentConfigName:
description: 'The name of the CodeDeploy deployment config'
required: false
default: 'CodeDeployDefault.LambdaAllAtOnce'
description:
description: 'The description of the deployment'
required: false
tagKey:
description: 'The key of the tag'
required: true
tagValues:
description: 'The values of the tag'
required: true
# Define your outputs here.
outputs:
deploymentId:
description: 'The ID of the deployment'
status:
description: 'The status of the deployment'
runs:
using: node20
main: dist/index.js