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 }} 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.