From 3bdd67a5d19164cfc9a767287d495897070a636a Mon Sep 17 00:00:00 2001 From: Vitalii Parfonov Date: Wed, 8 Jan 2020 13:02:15 +0200 Subject: [PATCH] Fix nigtly builds (#15617) Signed-off-by: Vitalii Parfonov --- .ci/cico_common.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci/cico_common.sh b/.ci/cico_common.sh index fcc2bf875d..a40e0fc0de 100644 --- a/.ci/cico_common.sh +++ b/.ci/cico_common.sh @@ -96,7 +96,7 @@ setup_gitconfig() { -publishImagesOnQuayLatest() { +publishImagesOnQuay() { echo "Going to build and push docker images" set -e set -o pipefail @@ -205,5 +205,5 @@ releaseProject() { fi git tag "${tag}" || die_with "Failed to create tag ${tag}! Release has been deployed, however" git push --tags || die_with "Failed to push tags. Please do this manually" - publishImagesOnQuayLatest ${tag} "pushLatest" + publishImagesOnQuay ${tag} "pushLatest" }