Skip to content

Commit e7935cd

Browse files
committed
circleci: don't tag to git or deploy to docker hub
Doing all of this in Circle turned out to be a pain, so I'm backing out those bits. Eventually, it would be good to have all of those various tasks centralized: once we do that elsewhere, we can remove the `deployment` bit entirely here. In the meantime, we should keep the existing behavior.
1 parent faf0b3c commit e7935cd

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

circle.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ machine:
44
environment:
55
CLOUDSDK_CORE_DISABLE_PROMPTS: 1
66
PRIVATE_REGISTRY: us.gcr.io/code_climate
7-
PUBLIC_REGISTRY: hub.docker.com/codeclimate
87

98
test:
109
override:
@@ -20,7 +19,4 @@ deployment:
2019
- curl https://sdk.cloud.google.com | bash
2120
- gcloud auth activate-service-account --key-file /tmp/gcloud_key.json
2221
- gcloud docker -a
23-
- git tag b$CIRCLE_BUILD_NUM master && git push origin b$CIRCLE_BUILD_NUM
2422
- docker push $PRIVATE_REGISTRY/$CIRCLE_PROJECT_REPONAME:b$CIRCLE_BUILD_NUM
25-
- docker tag $PRIVATE_REGISTRY/$CIRCLE_PROJECT_REPONAME:b$CIRCLE_BUILD_NUM $PUBLIC_REGISTRY/$CIRCLE_PROJECT_REPONAME:b$CIRCLE_BUILD_NUM
26-
- docker push $PUBLIC_REGISTRY/$CIRCLE_PROJECT_REPONAME:b$CIRCLE_BUILD_NUM

0 commit comments

Comments
 (0)