We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e84eed2 commit ff24da1Copy full SHA for ff24da1
.github/workflows/deploy-prod.yml
@@ -10,6 +10,12 @@ jobs:
10
- name: Checkout
11
uses: actions/checkout@v4
12
13
+ - name: Login to Registry
14
+ uses: docker/login-action@v3
15
+ with:
16
+ username: ${{ secrets.DOCKERHUB_PASSWORD }}
17
+ password: ${{ secrets.DOCKERHUB_USERNAME }}
18
+
19
- name: Docker metadata
20
id: meta
21
uses: docker/metadata-action@v5
@@ -23,12 +29,6 @@ jobs:
23
29
- name: Set up Docker Buildx
24
30
uses: docker/setup-buildx-action@v3
25
31
26
- - name: Login to Registry
27
- uses: docker/login-action@v3
28
- with:
- username: ${{ secrets.DOCKERHUB_PASSWORD }}
- password: ${{ secrets.DOCKERHUB_USERNAME }}
-
32
- name: Build and Publish HuggingChat image
33
uses: docker/build-push-action@v5
34
with:
0 commit comments