From a5fb059f6c984307e137aa3bd8937f5a4c05ea68 Mon Sep 17 00:00:00 2001 From: Tiago Garcia Date: Wed, 25 Oct 2023 16:54:51 +0200 Subject: [PATCH] Fix more issues with GHA and AWS deployment --- .github/workflows/deploy.yml | 4 ++-- client/Dockerfile.prod | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index d9f687d4..69dc6c9b 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -136,8 +136,8 @@ jobs: file: ./cms/Dockerfile.prod push: true tags: | - ${{ steps.login-ecr.outputs.registry }}/${{ secrets.API_REPOSITORY_NAME }}:${{ github.sha }} - ${{ steps.login-ecr.outputs.registry }}/${{ secrets.API_REPOSITORY_NAME }}:${{ steps.extract_branch.outputs.branch == 'main' && 'production' || steps.extract_branch.outputs.branch }} + ${{ steps.login-ecr.outputs.registry }}/${{ secrets.CMS_REPOSITORY_NAME }}:${{ github.sha }} + ${{ steps.login-ecr.outputs.registry }}/${{ secrets.CMS_REPOSITORY_NAME }}:${{ steps.extract_branch.outputs.branch == 'main' && 'production' || steps.extract_branch.outputs.branch }} deploy: name: Deploy Client and CMS to Amazon EB diff --git a/client/Dockerfile.prod b/client/Dockerfile.prod index a452f4b1..e5f27d53 100644 --- a/client/Dockerfile.prod +++ b/client/Dockerfile.prod @@ -13,7 +13,7 @@ COPY .yarn ./.yarn COPY public ./public COPY src ./src -COPY .browserlistrc \ +COPY .browserslistrc \ .yarnrc.yml \ components.json \ entrypoint.sh \