@@ -361,25 +361,26 @@ jobs:
361361 - name : Set up Docker Buildx
362362 uses : docker/setup-buildx-action@v3
363363
364- - name : Login to Docker Hub
364+ - name : Login to Quay
365365 uses : docker/login-action@v3
366366 with :
367- username : ${{ secrets.DOCKERHUB_USERNAME }}
368- password : ${{ secrets.DOCKERHUB_TOKEN }}
367+ registry : quay.io
368+ username : ${{ secrets.QUAY_USERNAME }}
369+ password : ${{ secrets.QUAY_PASSWORD }}
369370
370371 - name : Extract metadata (tags, labels) for Docker
371372 id : meta
372373 uses : docker/metadata-action@v5
373374 with :
374- images : parseable /parseable
375+ images : quay.io/parseablehq /parseable
375376
376377 - name : Build and push
377378 uses : docker/build-push-action@v6
378379 with :
379380 context : .
380381 file : ./Dockerfile
381382 push : true
382- tags : parseable /parseable:${{ github.ref_name }}
383+ tags : quay.io/parseablehq /parseable:${{ github.ref_name }}
383384 platforms : linux/amd64,linux/arm64
384385
385386 - name : Build and push kafka amd64
@@ -388,7 +389,7 @@ jobs:
388389 context : .
389390 file : ./Dockerfile.kafka
390391 push : true
391- tags : parseable /parseable:${{ github.ref_name }}-kafka-amd64
392+ tags : quay.io/parseablehq /parseable:${{ github.ref_name }}-kafka-amd64
392393 platforms : linux/amd64
393394 build-args : |
394395 LIB_DIR=x86_64-linux-gnu
@@ -399,7 +400,7 @@ jobs:
399400 context : .
400401 file : ./Dockerfile.kafka
401402 push : true
402- tags : parseable /parseable:${{ github.ref_name }}-kafka-arm64
403+ tags : quay.io/parseablehq /parseable:${{ github.ref_name }}-kafka-arm64
403404 platforms : linux/arm64
404405 build-args : |
405406 LIB_DIR=aarch64-linux-gnu
0 commit comments