testing deployment #44
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Push Docker Image | |
on: | |
push: | |
branches: | |
- nikita | |
jobs: | |
deploy_lambda: | |
name: Publish and Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-access-key-id: AKIA5ZOUUDPV4JSVHC5U | |
aws-secret-access-key: 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 | |
aws-region: us-west-1 | |
- name: Login to Amazon ECR | |
id: login-ecr | |
uses: aws-actions/amazon-ecr-login@v1 | |
- name: Build, tag, and push image to Amazon ECR | |
id: build-image | |
env: | |
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }} | |
ECR_REPOSITORY: pr-agent-prod | |
IMAGE_TAG: pragent | |
run: | | |
docker build -f ./Dockerfile -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG . | |
docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG | |
- name: Update Lambda function with latest ECR image | |
env: | |
LAMBDA_NAME: pr-agent-prod | |
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }} | |
ECR_REPOSITORY: pr-agent-prod | |
IMAGE_TAG: latest | |
run: | | |
aws lambda update-function-code \ | |
--function-name $LAMBDA_NAME \ | |
--image-uri $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG |