Skip to content

Commit

Permalink
feat: add cicd for dao rif wallet services testnet
Browse files Browse the repository at this point in the history
  • Loading branch information
david-iov committed Jul 1, 2024
1 parent 359108f commit c7bf237
Showing 1 changed file with 71 additions and 0 deletions.
71 changes: 71 additions & 0 deletions .github/workflows/cd-dao.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
name: Deploy to Amazon ECS

on:
push:
branches:
- develop
- DEVOPS-2000/cicd-dao

env:
AWS_REGION: us-east-1
ECR_REPOSITORY: rif-wallet-services-testnet
ECS_SERVICE: dao-wallet-services-testnet
ECS_CLUSTER: dao-rif-wallet-services-testnet
ECS_TASK_DEFINITION: dao-rif-wallet-services-testnet
CONTAINER_NAME: dao-rif-wallet-services-testnet

PROFILE: dao

jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
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.ROLE_DAO_TESTNET_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 --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

0 comments on commit c7bf237

Please sign in to comment.