Skip to content

Updated GH Deploy variables and renamed staging config file #602

Updated GH Deploy variables and renamed staging config file

Updated GH Deploy variables and renamed staging config file #602

Workflow file for this run

name: Deploys latest code
on:
push:
branches:
- master
- staging
permissions:
id-token: write
contents: read
concurrency:
group: deploy-${{ github.ref }}
cancel-in-progress: true
jobs:
backend:
runs-on: ubuntu-latest
environment: ${{ github.ref == 'refs/heads/master' && 'production' || 'staging' }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: arn:aws:iam::${{ secrets.AWS_ACCOUNT_ID }}:role/${{ secrets.AWS_ROLE_NAME }}
aws-region: ${{ secrets.AWS_REGION }}
- name: Log in to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v2
- name: Build and push Docker image
env:
ECR_REGISTRY: ${{ github.ref == 'refs/heads/master' && secrets.ECR_REGISTRY_WWW || secrets.ECR_REGISTRY_WWW_STAGING }}
ECR_REPOSITORY: ${{ github.ref == 'refs/heads/master' && secrets.ECR_REPOSITORY_WWW || secrets.ECR_REPOSITORY_WWW_STAGING }}
IMAGE_TAG: latest
run: |
docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG -f docker/Dockerfile .
docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG
- name: Download task definition
run: |
aws ecs describe-task-definition --task-definition ${{ github.ref == 'refs/heads/master' && secrets.ECS_TASK_DEFINITION_WWW || secrets.ECS_TASK_DEFINITION_WWW_STAGING }} \
--query taskDefinition > task-definition.json
- name: Fill in the new image ID in the Amazon ECS task definition
id: task-def
uses: aws-actions/amazon-ecs-render-task-definition@v1
with:
task-definition: task-definition.json
container-name: ${{ github.ref == 'refs/heads/master' && secrets.CONTAINER_NAME_WWW || secrets.CONTAINER_NAME_WWW_STAGING }}
image: ${{ github.ref == 'refs/heads/master' && format('{0}/{1}:latest', secrets.ECR_REGISTRY_WWW, secrets.ECR_REPOSITORY_WWW) || format('{0}/{1}:latest', secrets.ECR_REGISTRY_WWW_STAGING, secrets.ECR_REPOSITORY_WWW_STAGING) }}
- name: Deploy Amazon ECS task definition
uses: aws-actions/amazon-ecs-deploy-task-definition@v1
with:
task-definition: ${{ steps.task-def.outputs.task-definition }}
service: ${{ github.ref == 'refs/heads/master' && secrets.ECS_SERVICE_WWW || secrets.ECS_SERVICE_WWW_STAGING }}
cluster: ${{ github.ref == 'refs/heads/master' && secrets.ECS_CLUSTER_WWW || secrets.ECS_CLUSTER_WWW_STAGING }}
wait-for-service-stability: true