We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca23d78 commit a0003dcCopy full SHA for a0003dc
1 file changed
…b/workflows/build-and-push-dev-image.yml …orkflows/build-and-push-dev-ci-image.yml.github/workflows/build-and-push-dev-image.yml renamed to .github/workflows/build-and-push-dev-ci-image.yml
@@ -16,12 +16,11 @@ jobs:
16
- name: Set up QEMU
17
uses: docker/setup-qemu-action@v2
18
19
- - name: Login to GitHub Container Registry
+ - name: Login to DockerHub
20
uses: docker/login-action@v2
21
with:
22
- registry: ghcr.io
23
- username: ${{ github.actor }}
24
- password: ${{ github.token }}
+ username: ${{ secrets.DOCKERHUB_USERNAME }}
+ password: ${{ secrets.DOCKERHUB_TOKEN }}
25
26
- name: Set up Docker Buildx
27
id: buildx
@@ -35,11 +34,11 @@ jobs:
35
34
uses: docker/metadata-action@v4
36
37
images: |
38
- ghcr.io/sqlchat/sqlchat
+ sqlchat/sqlchat
39
flavor: |
40
latest=false
41
tags: |
42
- type=raw,value=dev
+ type=raw,value=dev-ci
43
44
- name: Build and Push
45
id: docker_build
0 commit comments