Skip to content

Commit

Permalink
fix: postmerge CD fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jurajpiar committed Oct 24, 2024
1 parent 2fc2680 commit 24f5638
Show file tree
Hide file tree
Showing 7 changed files with 6,753 additions and 6,944 deletions.
1 change: 1 addition & 0 deletions .env.regtest
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# This file contains the environment variables for the CR regtest environment
NEXT_PUBLIC_ENV=regtest
NEXT_PUBLIC_RIF_WALLET_SERVICES=http://localhost:3000/mock
NEXT_PUBLIC_EXPLORER=/mock
Expand Down
1 change: 1 addition & 0 deletions .env.testnet.local
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# This file contains the environment variables for the CR local testnet environment
NEXT_PUBLIC_ENV=testnet
NEXT_PUBLIC_RIF_WALLET_SERVICES=http://localhost:3000/cors_bypass
NEXT_PUBLIC_PROXY_DESTINATION=https://rws.app.rootstockcollective.xyz
Expand Down
1 change: 1 addition & 0 deletions .env.testnet.qa
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# This file contains the environment variables for the CR QA testnet environment
NEXT_PUBLIC_ENV=testnet
NEXT_PUBLIC_RIF_WALLET_SERVICES=https://frontend.qa.bim.dao.rif.technology/cors_bypass
NEXT_PUBLIC_PROXY_DESTINATION=https://rws.app.rootstockcollective.xyz
Expand Down
1 change: 1 addition & 0 deletions .env.testnet.staging
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# This file contains the environment variables for the CR staging testnet environment
NEXT_PUBLIC_ENV=testnet
NEXT_PUBLIC_RIF_WALLET_SERVICES=https://frontend.testnet.bim.dao.rif.technology/cors_bypass
NEXT_PUBLIC_PROXY_DESTINATION=https://rws.app.rootstockcollective.xyz
Expand Down
File renamed without changes.
74 changes: 74 additions & 0 deletions .github/workflows/cr.staging.deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
name: Deploy to Amazon ECS (STAGING)

on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+'

env:
AWS_REGION: us-east-1
ECR_REPOSITORY: bim-dao-frontend-testnet
ECS_SERVICE: bim-dao-frontend
ECS_CLUSTER: bim-dao-frontend-testnet
ECS_TASK_DEFINITION: bim-dao-frontend-testnet
CONTAINER_NAME: bim-dao-frontend

PROFILE: testnet.staging

jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
environment:
name: TESTNET
permissions:
id-token: write
contents: read

steps:
- name: Checkout
uses: actions/checkout@v2
with:
ref: ${{ github.ref }}

- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: ${{ secrets.AWS_LOGIN_TESTNET_ROLE_ARN }}
aws-region: ${{ env.AWS_REGION }}

- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v2

- 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 arg_env="$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
Loading

0 comments on commit 24f5638

Please sign in to comment.