File tree Expand file tree Collapse file tree 3 files changed +18
-0
lines changed Expand file tree Collapse file tree 3 files changed +18
-0
lines changed Original file line number Diff line number Diff line change 12
12
steps :
13
13
- uses : actions/checkout@v4
14
14
15
+ - name : Login to Docker Hub
16
+ uses : docker/login-action@v3
17
+ with :
18
+ username : ${{ secrets.DOCKERHUB_USERNAME }}
19
+ password : ${{ secrets.DOCKERHUB_TOKEN }}
20
+
15
21
- name : Build & Push Stable Docker
16
22
uses : docker/build-push-action@v5
17
23
with :
Original file line number Diff line number Diff line change 51
51
body: comment
52
52
})
53
53
54
+ - name : Login to Docker Hub
55
+ uses : docker/login-action@v3
56
+ with :
57
+ username : ${{ secrets.DOCKERHUB_USERNAME }}
58
+ password : ${{ secrets.DOCKERHUB_TOKEN }}
59
+
54
60
- name : Build & Push Docker Preview
55
61
uses : docker/build-push-action@v5
56
62
with :
Original file line number Diff line number Diff line change 23
23
with :
24
24
password : ${{ secrets.PYPI_TOKEN }}
25
25
26
+ - name : Login to Docker Hub
27
+ uses : docker/login-action@v3
28
+ with :
29
+ username : ${{ secrets.DOCKERHUB_USERNAME }}
30
+ password : ${{ secrets.DOCKERHUB_TOKEN }}
31
+
26
32
- name : Build & Push Docker
27
33
uses : docker/build-push-action@v5
28
34
with :
You can’t perform that action at this time.
0 commit comments