Skip to content

Commit

Permalink
Addede workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
trishantpahwa committed Nov 25, 2023
1 parent 326021e commit e9dfe4c
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/lambdas-deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Lambdas Deploy

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
deploy_lambda:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "12"
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-east-1
- name: npm install
env:
CI: true
run: |
npm ci
- name: deploy search
run: |
cd lambdas/search
npm ci
npm run build
npm run zip:lambda

0 comments on commit e9dfe4c

Please sign in to comment.