Skip to content

Commit

Permalink
Drop quay since schema v2_2 is not supported yet
Browse files Browse the repository at this point in the history
  • Loading branch information
timonwong committed May 20, 2019
1 parent 1d7cf79 commit 9e7bd28
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,14 @@ jobs:
at: .
- run: ln -s .build/linux-amd64/ding2wechat ding2wechat
- run: make docker
- run: make docker DOCKER_REPO=quay.io/timonwong
# - run: make docker DOCKER_REPO=quay.io/timonwong
- run: docker images
- run: docker login -u $DOCKER_LOGIN -p $DOCKER_PASSWORD
- run: docker login -u $QUAY_LOGIN -p $QUAY_PASSWORD quay.io
# - run: docker login -u $QUAY_LOGIN -p $QUAY_PASSWORD quay.io
- run: make docker-publish
- run: make docker-publish DOCKER_REPO=quay.io/timonwong
# - run: make docker-publish DOCKER_REPO=quay.io/timonwong
- run: make docker-manifest
- run: make docker-manifest DOCKER_REPO=quay.io/timonwong
# - run: make docker-manifest DOCKER_REPO=quay.io/timonwong

docker_hub_release_tags:
executor: golang
Expand All @@ -79,21 +79,21 @@ jobs:
destination: releases
- run: ln -s .build/linux-amd64/ding2wechat ding2wechat
- run: make docker DOCKER_IMAGE_TAG=$CIRCLE_TAG
- run: make docker DOCKER_IMAGE_TAG=$CIRCLE_TAG DOCKER_REPO=quay.io/timonwong
# - run: make docker DOCKER_IMAGE_TAG=$CIRCLE_TAG DOCKER_REPO=quay.io/timonwong
- run: docker login -u $DOCKER_LOGIN -p $DOCKER_PASSWORD
- run: docker login -u $QUAY_LOGIN -p $QUAY_PASSWORD quay.io
# - run: docker login -u $QUAY_LOGIN -p $QUAY_PASSWORD quay.io
- run: make docker-publish DOCKER_IMAGE_TAG="$CIRCLE_TAG"
- run: make docker-publish DOCKER_IMAGE_TAG="$CIRCLE_TAG" DOCKER_REPO=quay.io/timonwong
# - run: make docker-publish DOCKER_IMAGE_TAG="$CIRCLE_TAG" DOCKER_REPO=quay.io/timonwong
- run: make docker-manifest DOCKER_IMAGE_TAG="$CIRCLE_TAG"
- run: make docker-manifest DOCKER_IMAGE_TAG="$CIRCLE_TAG" DOCKER_REPO=quay.io/timonwong
# - run: make docker-manifest DOCKER_IMAGE_TAG="$CIRCLE_TAG" DOCKER_REPO=quay.io/timonwong
- run: |
if [[ "$CIRCLE_TAG" =~ ^v[0-9]+(\.[0-9]+){2}$ ]]; then
make docker-tag-latest DOCKER_IMAGE_TAG="$CIRCLE_TAG"
make docker-tag-latest DOCKER_IMAGE_TAG="$CIRCLE_TAG" DOCKER_REPO=quay.io/timonwong
# make docker-tag-latest DOCKER_IMAGE_TAG="$CIRCLE_TAG" DOCKER_REPO=quay.io/timonwong
make docker-publish DOCKER_IMAGE_TAG="latest"
make docker-publish DOCKER_IMAGE_TAG="latest" DOCKER_REPO=quay.io/timonwong
# make docker-publish DOCKER_IMAGE_TAG="latest" DOCKER_REPO=quay.io/timonwong
make docker-manifest DOCKER_IMAGE_TAG="latest"
make docker-manifest DOCKER_IMAGE_TAG="latest" DOCKER_REPO=quay.io/timonwong
# make docker-manifest DOCKER_IMAGE_TAG="latest" DOCKER_REPO=quay.io/timonwong
fi
workflows:
Expand Down

0 comments on commit 9e7bd28

Please sign in to comment.