Update regulators.ts #41
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, Push and Deploy Docker Image | |
on: | |
pull_request: | |
types: | |
- closed | |
jobs: | |
build-push-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 2 | |
- name: Find changed lambda | |
id: find-lambda | |
run: | | |
echo "CHANGED_LAMBDA=$(git diff --name-only HEAD^ HEAD | grep '^lambdas/' | sed 's/lambdas\///' | sed 's/\/.*//' | sort | uniq)" >> $GITHUB_ENV | |
- name: Print variables | |
if: ${{ env.CHANGED_LAMBDA != '' }} | |
run: | | |
echo "Changed lambda: ${{ env.CHANGED_LAMBDA }}" | |
- name: Configure AWS credentials for dev | |
if: ${{ env.CHANGED_LAMBDA != '' }} | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID_DEV }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY_DEV }} | |
aws-region: eu-west-2 | |
- name: Login to Amazon ECR in dev | |
if: ${{ env.CHANGED_LAMBDA != '' }} | |
id: login-ecr-dev | |
uses: aws-actions/amazon-ecr-login@v1 | |
- name: Build and tag Docker images in dev | |
if: ${{ env.CHANGED_LAMBDA != '' }} | |
uses: docker/build-push-action@v4 | |
with: | |
context: lambdas/${{ env.CHANGED_LAMBDA }}/ | |
platforms: linux/amd64 | |
push: true | |
tags: ${{ steps.login-ecr-dev.outputs.registry }}/${{ env.CHANGED_LAMBDA }}:latest | |
- name: Update Lambda function in dev | |
if: ${{ env.CHANGED_LAMBDA != '' }} | |
uses: appleboy/lambda-action@master | |
continue-on-error: true # Set to true because Lambdas will go "idle" if not invoked for a while and this make Github Actions fail | |
with: | |
aws_access_key_id: ${{ secrets.AWS_ACCESS_KEY_ID_DEV }} | |
aws_secret_access_key: ${{ secrets.AWS_SECRET_ACCESS_KEY_DEV }} | |
aws_region: eu-west-2 | |
function_name: ${{ env.CHANGED_LAMBDA }} | |
image_uri: ${{ steps.login-ecr-dev.outputs.registry }}/${{ env.CHANGED_LAMBDA }}:latest | |
- name: Configure AWS credentials in test | |
if: ${{ env.CHANGED_LAMBDA != '' }} | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID_TEST }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY_TEST }} | |
aws-region: eu-west-2 | |
- name: Login to Amazon ECR in test | |
if: ${{ env.CHANGED_LAMBDA != '' }} | |
id: login-ecr-test | |
uses: aws-actions/amazon-ecr-login@v1 | |
- name: Build and tag Docker image in test | |
if: ${{ env.CHANGED_LAMBDA != '' }} | |
uses: docker/build-push-action@v4 | |
with: | |
context: lambdas/${{ env.CHANGED_LAMBDA }}/ | |
platforms: linux/amd64 | |
push: true | |
tags: ${{ steps.login-ecr-test.outputs.registry }}/${{ env.CHANGED_LAMBDA }}:latest | |
- name: Update Lambda function in test | |
if: ${{ env.CHANGED_LAMBDA != '' }} | |
uses: appleboy/lambda-action@master | |
continue-on-error: true # Set to true because Lambdas will go "idle" if not invoked for a while and this make Github Actions fail | |
with: | |
aws_access_key_id: ${{ secrets.AWS_ACCESS_KEY_ID_TEST }} | |
aws_secret_access_key: ${{ secrets.AWS_SECRET_ACCESS_KEY_TEST }} | |
aws_region: eu-west-2 | |
function_name: ${{ env.CHANGED_LAMBDA }} | |
image_uri: ${{ steps.login-ecr-test.outputs.registry }}/${{ env.CHANGED_LAMBDA }}:latest | |
- name: Configure AWS credentials in preprod | |
if: ${{ env.CHANGED_LAMBDA != '' }} | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID_PREPROD }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY_PREPROD }} | |
aws-region: eu-west-2 | |
- name: Login to Amazon ECR in preprod | |
if: ${{ env.CHANGED_LAMBDA != '' }} | |
id: login-ecr-preprod | |
uses: aws-actions/amazon-ecr-login@v1 | |
- name: Build and tag Docker image in preprod | |
if: ${{ env.CHANGED_LAMBDA != '' }} | |
uses: docker/build-push-action@v4 | |
with: | |
context: lambdas/${{ env.CHANGED_LAMBDA }}/ | |
platforms: linux/amd64 | |
push: true | |
tags: ${{ steps.login-ecr-preprod.outputs.registry }}/${{ env.CHANGED_LAMBDA }}:latest | |
- name: Update Lambda function in preprod | |
if: ${{ env.CHANGED_LAMBDA != '' }} | |
uses: appleboy/lambda-action@master | |
continue-on-error: true # Set to true because Lambdas will go "idle" if not invoked for a while and this make Github Actions fail | |
with: | |
aws_access_key_id: ${{ secrets.AWS_ACCESS_KEY_ID_PREPROD }} | |
aws_secret_access_key: ${{ secrets.AWS_SECRET_ACCESS_KEY_PREPROD }} | |
aws_region: eu-west-2 | |
function_name: ${{ env.CHANGED_LAMBDA }} | |
image_uri: ${{ steps.login-ecr-preprod.outputs.registry }}/${{ env.CHANGED_LAMBDA }}:latest |