We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb7d4f8 commit 306a9a0Copy full SHA for 306a9a0
1 file changed
.github/workflows/ci.yml
@@ -327,18 +327,18 @@ jobs:
327
- name: Set up Docker Buildx
328
uses: docker/setup-buildx-action@v3
329
330
- - name: Login to Container Registry
+ - name: Login to Container Registry (Docker Hub)
331
uses: docker/login-action@v3
332
with:
333
- registry: ghcr.io
334
- username: ${{ github.actor }}
335
- password: ${{ secrets.GITHUB_TOKEN }}
+ registry: docker.io
+ username: ${{ secrets.DOCKER_USERNAME }}
+ password: ${{ secrets.DOCKER_TOKEN }}
336
337
- name: Extract metadata
338
id: meta
339
uses: docker/metadata-action@v5
340
341
- images: ghcr.io/${{ github.repository }}
+ images: ${{ secrets.DOCKER_USERNAME }}/opencodehub
342
tags: |
343
type=ref,event=branch
344
type=sha
0 commit comments