From fba58dbc5f987c86b6272a730ffbf9441dc4935f Mon Sep 17 00:00:00 2001 From: Marco Neumann Date: Wed, 29 Jun 2022 11:52:44 +0200 Subject: [PATCH] ci: IOx still needs to push its image tags (#4977) This will be replaced by a pull-based approach soon, but for the time being we still need perform the final push. --- .circleci/config.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 49a049905b..07c012ff12 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -489,6 +489,15 @@ jobs: docker push quay.io/influxdb/iox:"$BRANCH" docker push quay.io/influxdb/iox_data_generator:"$BRANCH" + # for next step + echo "export COMMIT_SHA=${COMMIT_SHA}" >> $BASH_ENV + # currently we still need to PUSH our image tag. This will be replaced by a pull-based approach soon. + - run: + name: Push to c2updater + command: | + echo "$QUAY_PASS" | docker login quay.io --username $QUAY_USER --password-stdin + ./.circleci/get-deploy-tags.sh "${COMMIT_SHA}" + # Prepare the CI image used for other tasks. # # A nightly job (scheduled below in the `workflows` section) to build the CI