ci: drop circleci docker hub update (#2102)

Signed-off-by: Rui Chen <rui@chenrui.dev>
This commit is contained in:
rui
2022-03-02 12:44:56 -05:00
committed by GitHub
parent 8c26e75f58
commit 94eccee147

View File

@@ -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.*/