Skip to content

Commit

Permalink
Merge branch 'dev' into newlayout
Browse files Browse the repository at this point in the history
  • Loading branch information
johnlcos authored May 1, 2024
2 parents e81f159 + 4673fc5 commit 87b9e46
Show file tree
Hide file tree
Showing 8 changed files with 609 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ jobs:
# 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 -t $ECR_REGISTRY/$ECR_REPOSITORY:client ./client
docker push $ECR_REGISTRY/$ECR_REPOSITORY/:$IMAGE_TAG
echo "image=$ECR_REGISTRY/$ECR_REPOSITORY/:$IMAGE_TAG" >> $GITHUB_OUTPUT
docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG ./client
docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG
echo "image=$ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG" >> $GITHUB_OUTPUT
- name: Fill in the new image ID in the Amazon ECS task definition
id: task-def
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docker-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ jobs:
# 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 -t $ECR_REGISTRY/$ECR_REPOSITORY:server ./server
docker push $ECR_REGISTRY/$ECR_REPOSITORY/:$IMAGE_TAG
echo "image=$ECR_REGISTRY/$ECR_REPOSITORY/:$IMAGE_TAG" >> $GITHUB_OUTPUT
docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG ./server
docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG
echo "image=$ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG" >> $GITHUB_OUTPUT
- name: Fill in the new image ID in the Amazon ECS task definition
id: task-def
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/task-definition-server.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"containerDefinitions": [
{
"name": "currentC-server",
"image": "525357733102.dkr.ecr.us-east-2.amazonaws.com/currentc-server:latest",
"image": "525357733102.dkr.ecr.us-east-2.amazonaws.com/currentc-server",
"cpu": 0,
"portMappings": [
{
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/task-definition.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"containerDefinitions": [
{
"name": "currentC-client",
"image": "525357733102.dkr.ecr.us-east-2.amazonaws.com/currentc-client:latest",
"image": "525357733102.dkr.ecr.us-east-2.amazonaws.com/currentc-client",
"cpu": 0,
"portMappings": [
{
Expand Down
Loading

0 comments on commit 87b9e46

Please sign in to comment.