From 6a9683bcc30afeb1dbb2f6ef034a750e6730aac1 Mon Sep 17 00:00:00 2001 From: Justin Sherrill Date: Mon, 18 Nov 2024 07:27:04 -0500 Subject: [PATCH] Build: login to brew registry --- .rhcicd/build_deploy.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.rhcicd/build_deploy.sh b/.rhcicd/build_deploy.sh index 6a7d598d4..ca1cbeaa9 100755 --- a/.rhcicd/build_deploy.sh +++ b/.rhcicd/build_deploy.sh @@ -27,6 +27,11 @@ make docker-login \ DOCKER_LOGIN_TOKEN="$RH_REGISTRY_TOKEN" \ DOCKER_REGISTRY="registry.redhat.io" +make docker-login \ + DOCKER_LOGIN_USER="$RH_REGISTRY_USER" \ + DOCKER_LOGIN_TOKEN="$RH_REGISTRY_TOKEN" \ + DOCKER_REGISTRY="brew.registry.redhat.io" + # build and push make docker-build docker-push \ DOCKER_BUILD_OPTS=--no-cache \