From 2119ede71a25626b73ecfef83bec5b4873779cef Mon Sep 17 00:00:00 2001 From: Will Meister Date: Sun, 26 Apr 2020 16:31:06 -0500 Subject: [PATCH] Fixing prod CD script --- .github/workflows/synthetix-prod-ecr-deploy.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/synthetix-prod-ecr-deploy.yml b/.github/workflows/synthetix-prod-ecr-deploy.yml index 779e34ba43c32..e3470f60a0331 100644 --- a/.github/workflows/synthetix-prod-ecr-deploy.yml +++ b/.github/workflows/synthetix-prod-ecr-deploy.yml @@ -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: @@ -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