Fix nigtly builds (#15617)

Signed-off-by: Vitalii Parfonov <vparfono@redhat.com>
7.20.x
Vitalii Parfonov 2020-01-08 13:02:15 +02:00 committed by GitHub
parent ca86fcb97d
commit 3bdd67a5d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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"
}