Skip to content

a GitHub Action to deploy lambda functions from Git Repos.

License

Notifications You must be signed in to change notification settings

embeddedinn/deploy_lambda

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Deploy Lambda docker action

This action deploys code in a zip file into an AWS lambda.

Inputs

access-key-id

Required AWS Access Key ID.

access-key-secret

Required AWS Access Key Secret.

region

Required AWS region to deploy hte lambda function.

lambda-name

Required Name of the lambda function to be updated.

zip-file

Required Path to the zip file containing the lambda code.

Example usage

uses: embeddedinn/deploy_lambda@v1.0.0
with:
  access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
  access-key-secret: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
  region: ${{ secrets.AWS_REGION }}
  lambda-name: ${{ secrets.LAMBDA_NAME }}
  zip-file: lambda_function.zip