Thanks to visit codestin.com
Credit goes to github.com

Skip to content

SnapStreamMedia/dotnet-lambda-actions

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 

Repository files navigation

.NET Lambda GitHub Actions

This .NET Lambda GitHub Actions repository provides an action that uses the AWS .NET Lambda tools to package and upload a .NET package to a Lambda function.

Getting Started

Create a GitHub Action workflow in a private repository hosting a .NET project with the following code in a workflow:

name: Deploy to dev environment
on:
  push:
    branches:
      - develop
jobs:
  test:
    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v1

    - name: Use .NET 2.1
      uses: actions/setup-dotnet@v1
      with:
        dotnet-version: 2.1.500

    - name: .NET Lambda build and deploy
      uses: evalytica/dotnet-lambda-actions/[email protected]
      env:
        AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
        AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
        AWS_REGION: us-east-1
        DOTNET_LAMBDA_PACKAGE_NAME: latest.zip
        DOTNET_LAMBDA_FUNCTION_HANDLER: Host::MyLambdaDomain.Host.LambdaEntryPoint::FunctionHandlerAsync
        DOTNET_LAMBDA_FUNCTION_NAME: my-lambda-function-name
        DOTNET_LAMBDA_S3_LOCATION: my-lambda-builds-bucket/my-lambda-function-name
        DOTNET_LAMBDA_WORKING_DIR: ./src

Actions

Deploy Action

Given:

  • DOTNET_LAMBDA_WORKING_DIR: .NET project directory
  • AWS_ACCESS_KEY_ID & AWS_SECRET_ACCESS_KEY: AWS credentials
  • AWS_REGION: AWS region (default: us-east-1)
  • DOTNET_LAMBDA_PACKAGE_NAME: Filename to use for zipped package archive. (default: latest.zip)
  • DOTNET_LAMBDA_S3_LOCATION: S3 bucket/key to upload package archive to (example: <bucket_name>/<key/folder>)
  • DOTNET_LAMBDA_FUNCTION_NAME: Lambda function name
  • DOTNET_LAMBDA_FUNCTION_HANDLER: Lambda function handler

This action will package the project, update the Lambda function with the packaged code, and deploy the function.

About

Provides AWS .NET Lambda actions for code deployment

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages

  • Dockerfile 59.4%
  • Shell 40.6%