Skip to content

Commit

Permalink
login on quay.io instead of docker hub
Browse files Browse the repository at this point in the history
  • Loading branch information
unixfox committed May 18, 2024
1 parent d2a4f3a commit 1f891c5
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ jobs:
uses: docker/setup-buildx-action@v2
with:
version: latest
- name: Login to DockerHub
- name: Login to Quay.io
uses: docker/login-action@v2
with:
registry: quay.io
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_PASSWORD }}
- name: Build and push AMD64 Docker image
Expand All @@ -44,9 +45,10 @@ jobs:
uses: docker/setup-buildx-action@v2
with:
version: latest
- name: Login to DockerHub
- name: Login to Quay.io
uses: docker/login-action@v2
with:
with:
registry: quay.io
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_PASSWORD }}
- name: Build and push ARM64 Docker image
Expand Down

0 comments on commit 1f891c5

Please sign in to comment.