Update README.md #68
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: Crawlers | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Build & Push Docker Image | |
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: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-region: ${{ secrets.AWS_REGION }} | |
- name: Login to Amazon ECR | |
id: login-ecr | |
uses: aws-actions/amazon-ecr-login@v1 | |
- name: Build images & push to ECR | |
id: build-image | |
uses: docker/build-push-action@v4 | |
with: | |
context: ./course/module-1 | |
file: ./course/module-1/Dockerfile | |
tags: | | |
${{ steps.login-ecr.outputs.registry }}/crawler:${{ github.sha }} | |
${{ steps.login-ecr.outputs.registry }}/crawler:latest | |
push: true | |
deploy: | |
name: Deploy Crawler | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- 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: ${{ secrets.AWS_REGION }} | |
- name: Deploy Lambda Image | |
id: deploy-lambda | |
run: | | |
echo "Updating lambda with new image version $ECR_REPOSITORY/crawler:$PROJECT_VERSION..." | |
aws lambda update-function-code \ | |
--function-name "arn:aws:lambda:$AWS_REGION:$AWS_ACCOUNT_ID:function:crawler" \ | |
--image-uri $ECR_REPOSITORY/crawler:$PROJECT_VERSION | |
echo "Successfully updated lambda" | |
env: | |
AWS_REGION: ${{ secrets.AWS_REGION }} | |
ECR_REPOSITORY: ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ secrets.AWS_REGION }}.amazonaws.com | |
PROJECT_VERSION: ${{ github.sha }} | |
AWS_ACCOUNT_ID: ${{ secrets.AWS_ACCOUNT_ID }} |