generated from int128/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathaction.yaml
35 lines (32 loc) · 945 Bytes
/
action.yaml
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
name: deploy-lambda-action
description: Deploy the code or container image to an existing Lambda function
inputs:
function-name:
description: Name of the function
required: true
image-uri:
description: URI of the container image
required: false
zip-path:
description: Path to the archive
required: false
architecture:
description: If set, update the architecture of the function (optional)
required: false
alias-name:
description: If set, create or update the function alias (optional)
required: false
alias-description:
description: Description of the function alias (optional)
required: false
default: ref=${{ github.ref }},sha=${{ github.sha }}
outputs:
function-version:
description: Published version
function-version-arn:
description: ARN of published version
function-alias-arn:
description: ARN of alias
runs:
using: 'node20'
main: 'dist/index.js'