forked from appleboy/lambda-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
43 lines (42 loc) · 1.36 KB
/
action.yml
File metadata and controls
43 lines (42 loc) · 1.36 KB
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
name: 'AWS Lambda Deploy'
description: 'Deploying Lambda code to an existing function'
author: 'Bo-Yi Wu'
inputs:
aws_region:
description: 'AWS Region'
default: 'us-east-1'
aws_access_key_id:
description: 'AWS ACCESS KEY'
aws_secret_access_key:
description: 'AWS SECRET KEY'
aws_session_token:
description: 'AWS Session token'
aws_profile:
description: 'AWS profile'
function_name:
description: 'AWS lambda function name'
s3_bucket:
description: 'An Amazon S3 bucket in the same AWS Region as your function. The bucket can be in a different AWS account.'
s3_key:
description: 'The Amazon S3 key of the deployment package.'
s3_object_version:
description: 'AWS lambda s3 object version'
zip_file:
description: 'AWS lambda zip file'
source:
description: 'zip file list'
dry_run:
description: 'Set to true to validate the request parameters and access permissions without modifying the function code.'
debug:
description: 'Show debug message after upload the lambda successfully.'
publish:
description: 'Set to true to publish a new version of the function after updating the code.'
default: true
reversion_id:
description: 'Only update the function if the revision ID matches the ID that is specified.'
runs:
using: 'docker'
image: 'Dockerfile'
branding:
icon: 'layers'
color: 'gray-dark'