From 428551e2fd819ef40636f4bf7674c0cb968a3ea2 Mon Sep 17 00:00:00 2001 From: Omkar Joshi <103182931+omkarjoshi0304@users.noreply.github.com> Date: Wed, 8 Jul 2026 15:19:39 +0100 Subject: [PATCH] Use org-level REDHATIO secrets for Red Hat registry login Update workflow to use REDHATIO_USERNAME/REDHATIO_PASSWORD from the openstack-k8s-operators org secrets instead of repo-level REDHAT_REGISTRY_USERNAME/REDHAT_REGISTRY_PASSWORD. --- .github/workflows/build-and-push.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-push.yaml b/.github/workflows/build-and-push.yaml index 3fb8f6c..5aa1bf2 100644 --- a/.github/workflows/build-and-push.yaml +++ b/.github/workflows/build-and-push.yaml @@ -71,8 +71,8 @@ jobs: uses: docker/login-action@v4 with: registry: registry.redhat.io - username: ${{ secrets.REDHAT_REGISTRY_USERNAME }} - password: ${{ secrets.REDHAT_REGISTRY_PASSWORD }} + username: ${{ secrets.REDHATIO_USERNAME }} + password: ${{ secrets.REDHATIO_PASSWORD }} - name: Build operator image run: |