From 1ff0d9f61268edc0bbc696fcf160cb06dbb40f85 Mon Sep 17 00:00:00 2001 From: Arve Knudsen Date: Tue, 5 May 2020 13:14:42 +0200 Subject: [PATCH] CircleCI: Temporarily ignore publishing of master Docker images (#24280) Signed-off-by: Arve Knudsen --- .circleci/config.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index b4d3eef4924..7f7de61050b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -622,8 +622,12 @@ jobs: if [[ $CIRCLE_BRANCH == "chore/test-release-pipeline" ]]; then # We're testing the release pipeline /tmp/grabpl publish-docker --jobs 4 --edition << parameters.edition >> --ubuntu=<< parameters.ubuntu >> --dry-run - else + elif [[ -n $CIRCLE_TAG ]]; then + # This is a release /tmp/grabpl publish-docker --jobs 4 --edition << parameters.edition >> --ubuntu=<< parameters.ubuntu >> + else + # TODO: Don't ignore errors, temporary workaround until we fix #22955 + /tmp/grabpl publish-docker --jobs 4 --edition << parameters.edition >> --ubuntu=<< parameters.ubuntu >> || echo Publishing failed! fi - run: name: CI job failed