Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/synthetix-prod-ecr-deploy.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build & Tag Container, Push to ECR, Deploy to UAT
name: Build & Tag Container, Push to ECR, Deploy to prod

on:
push:
Expand Down Expand Up @@ -28,17 +28,17 @@ jobs:
- name: Build, tag, and push Geth to ECR
env:
AWS_ACCOUNT_NUMBER: ${{ secrets.AWS_CI_AWS_ACCOUNT_ID }}
run: ./docker/publish-geth-container.sh synthetix-uat
run: ./docker/publish-geth-container.sh synthetix-prod

- name: Build, tag, and push Full Node to ECR
env:
AWS_ACCOUNT_NUMBER: ${{ secrets.AWS_CI_AWS_ACCOUNT_ID }}
run: ./docker/publish-rollup-fullnode-container.sh synthetix-uat
run: ./docker/publish-rollup-fullnode-container.sh synthetix-prod

- name: Stop existing ECS tasks to auto-start task with new image
run: |
./.github/scripts/stop-ecs-task.sh synthetix-uat-web synthetix-prod-web
./.github/scripts/stop-ecs-task.sh synthetix-uat-geth synthetix-prod-geth
./.github/scripts/stop-ecs-task.sh synthetix-prod-web synthetix-prod-web
./.github/scripts/stop-ecs-task.sh synthetix-prod-geth synthetix-prod-geth


- name: Logout of Amazon ECR
Expand Down