We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a43d80d commit 60adb06Copy full SHA for 60adb06
1 file changed
Makefile
@@ -8,9 +8,10 @@ SERVICE_TAG=${tag}
8
AWS_REGION=us-west-2
9
ECR=${AWS_ACCT}.dkr.ecr.us-west-2.amazonaws.com
10
ECS_API_REPO=${ECR}/${API}
11
-INTERNAL_REPO=${ECR}/internal
+INTERNAL_REPO=${ECR}/admin
12
13
all: build push deploy
14
+all-internal: build-internal push-internal deploy-internal
15
16
test-envvars:
17
@[ "${env}" ] || ( echo "env var is not set"; exit 1 )
@@ -37,4 +38,4 @@ push-internal:test-envvars
37
38
docker push $(INTERNAL_REPO):${SERVICE_TAG}
39
40
deploy-internal: test-envvars
- aws ecs --region $(AWS_REGION) update-service --cluster internal --service internal --force-new-deployment
41
+ aws ecs --region $(AWS_REGION) update-service --cluster admin --service admin --force-new-deployment
0 commit comments