Skip to content

refactor: footer at the bottom (#463) #185

refactor: footer at the bottom (#463)

refactor: footer at the bottom (#463) #185

name: Deploy to Amazon ECS (staging)
on:
push:
branches:
- develop
env:
AWS_REGION: us-east-1
ECR_REPOSITORY: rscoll-dev-dao-staging
ECS_CLUSTER: rscoll-dev
ECS_SERVICE: rscoll-dev-dao-staging
ECS_TASK_DEFINITION: rscoll-dev-dao-staging
CONTAINER_NAME: rscoll-dev-dao-staging
# The .env file that is used to build the docker image
# is retrieved using PROFILE, so be sure there is a `.env.<PROFILE>` file
# that matches with the profile set
# Example: PROFILE=testnet => .env.testnet
PROFILE: qa
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
environment:
name: staging
permissions:
id-token: write
contents: read
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: ${{ secrets.AWS_LOGIN_STAGING_ROLE_ARN }}
aws-region: ${{ env.AWS_REGION }}
- 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 }}
IMAGE_TAG: ${{ github.sha }}
run: |
# Build a docker container and
# push it to ECR so that it can
# be deployed to ECS.
docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG --build-arg PROFILE="$PROFILE" --build-arg NEXT_PUBLIC_BUILD_ID=${{ github.sha }} --no-cache .
docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG
echo "::set-output name=image::$ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG"
- name: Download task definition
run: aws ecs describe-task-definition --task-definition ${{ env.ECS_TASK_DEFINITION }} --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: ${{ env.CONTAINER_NAME }}
image: ${{ steps.build-image.outputs.image }}
- 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: ${{ env.ECS_SERVICE }}
cluster: ${{ env.ECS_CLUSTER }}
wait-for-service-stability: true