-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
28 lines (28 loc) · 911 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
name: 'AWS Lambda Update Action'
author: 'Kazi Manzur Rashid <[email protected]>'
branding:
color: 'orange'
icon: 'upload'
description: 'Updates the specified lambda'
inputs:
zip-file:
required: true
description: 'The zip file location'
lambda-name:
required: false
description: 'Optional, if not specified, it uses the file base name as function name'
AWS_REGION:
description: 'Optional if not specified fallbacks to environment variable'
required: false
AWS_ACCESS_KEY_ID:
description: 'Optional if not specified fallbacks to environment variable'
required: false
AWS_SECRET_ACCESS_KEY:
description: 'Optional if not specified fallbacks to environment variable'
required: false
AWS_SESSION_TOKEN:
description: 'Optional if not specified fallbacks to environment variable'
required: false
runs:
using: 'node20'
main: 'dist/index.js'