Skip to content

Commit

Permalink
Fix more issues with GHA and AWS deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagojsag committed Oct 25, 2023
1 parent 836feec commit a5fb059
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion client/Dockerfile.prod
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ COPY .yarn ./.yarn
COPY public ./public
COPY src ./src

COPY .browserlistrc \
COPY .browserslistrc \
.yarnrc.yml \
components.json \
entrypoint.sh \
Expand Down

0 comments on commit a5fb059

Please sign in to comment.