From 1e89bf278863b5c20e0ea43f20eb588e0fc378b9 Mon Sep 17 00:00:00 2001 From: Lakhan Samani Date: Fri, 29 May 2026 17:14:48 +0530 Subject: [PATCH 1/2] chore: use quay img --- .github/workflows/release.yaml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 39646716..9a3982af 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -18,7 +18,7 @@ on: types: [created] env: - DOCKER_IMAGE: lakhansamani/authorizer + DOCKER_IMAGE: quay.io/authorizer/authorizer BUILDKIT_INLINE_CACHE: 1 jobs: @@ -46,11 +46,12 @@ jobs: uses: docker/setup-buildx-action@v3 with: platforms: linux/amd64,linux/arm64 - - name: Log in to Docker Hub + - name: Log in to Quay uses: docker/login-action@v3 with: - username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_PASSWORD }} + registry: quay.io + username: ${{ secrets.QUAY_USERNAME }} + password: ${{ secrets.QUAY_PASSWORD }} - name: Build and push env: SOURCE_URL: https://github.com/${{ github.repository }} From 72e904eeb374ef4ea89c87bfec79e1fc2b876b4b Mon Sep 17 00:00:00 2001 From: Lakhan Samani Date: Wed, 3 Jun 2026 10:24:29 +0530 Subject: [PATCH 2/2] chore: update quauy img --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1d792ce6..09767464 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ PROJECT := authorizer DEFAULT_VERSION=0.1.0-local VERSION := $(or $(VERSION),$(DEFAULT_VERSION)) -DOCKER_IMAGE ?= lakhansamani/authorizer:$(VERSION) +DOCKER_IMAGE ?= quay.io/authorizer/authorizer:$(VERSION) # Full module test run. Storage provider tests honour TEST_DBS (defaults to all). # Integration tests and memory_store/db tests always use SQLite.