From 94eccee1475dff99943b56cdffe9d4cf4e47d636 Mon Sep 17 00:00:00 2001 From: rui Date: Wed, 2 Mar 2022 12:44:56 -0500 Subject: [PATCH] ci: drop circleci docker hub update (#2102) Signed-off-by: Rui Chen --- .circleci/config.yml | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 1edb9c2d57..6728637a44 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -47,22 +47,6 @@ jobs: --buffer-size 8192 \ http://localhost:8080/ - # Build and push Docker tag. - docker_tag: - docker: - - image: circleci/golang:1.17 # If you update this, update it in the Makefile too - steps: - - checkout - - run: make build-service - - setup_remote_docker - - run: - name: Build and tag - command: | - if [ -n "${CIRCLE_TAG}" ]; then - docker build -t "runatlantis/atlantis:${CIRCLE_TAG}" . - docker login -u "$DOCKER_USER" -p "$DOCKER_PASSWORD" - docker push "runatlantis/atlantis:${CIRCLE_TAG}" - fi workflows: version: 2 branch: @@ -81,13 +65,3 @@ workflows: # the atlantis-e2e-tests context (and also doc PRs). ignore: /(pull\/\d+)|(docs\/.*)/ - website_link_check - tag: - jobs: - - docker_tag: - context: - - docker-push - filters: - branches: - ignore: /.*/ - tags: - only: /^v.*/