Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: drop circleci docker hub update #2102

Merged
merged 1 commit into from
Mar 2, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 0 additions & 26 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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.*/