From 6a9feadb3eb061e459b6793b257b79c56c9322cd Mon Sep 17 00:00:00 2001 From: Nikhil Sinha Date: Tue, 2 Jun 2026 09:38:33 +0700 Subject: [PATCH] update docker registry to quay --- .github/workflows/build-push.yaml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build-push.yaml b/.github/workflows/build-push.yaml index a6b9bb4..9b9f750 100644 --- a/.github/workflows/build-push.yaml +++ b/.github/workflows/build-push.yaml @@ -7,33 +7,32 @@ # To get a newer version, you will need to update the SHA. # You can also reference a tag or branch, but the action may change without warning. -name: Create and publish a Docker image to GHCR +name: Create and publish a Docker image to Quay on: push: branches: ['main'] env: - REGISTRY: ghcr.io - IMAGE_NAME: ${{ github.repository }} + REGISTRY: quay.io + IMAGE_NAME: parseablehq/quest jobs: build-and-push-image: runs-on: ubuntu-latest permissions: contents: read - packages: write steps: - name: Checkout repository uses: actions/checkout@v3 - - name: Log in to the Container registry + - name: Login to Quay uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9 with: registry: ${{ env.REGISTRY }} - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} + username: ${{ secrets.QUAY_USERNAME }} + password: ${{ secrets.QUAY_PASSWORD }} - name: Extract metadata (tags, labels) for Docker id: meta