File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -145,6 +145,12 @@ jobs:
145
145
needs : [build]
146
146
runs-on : ubuntu-latest
147
147
steps :
148
+ - name : Login to Docker Hub
149
+ uses : docker/login-action@v3
150
+ with :
151
+ username : ${{ secrets.DOCKERHUB_USERNAME }}
152
+ password : ${{ secrets.DOCKERHUB_TOKEN }}
153
+
148
154
- name : Do the deploy
149
155
run : |
150
156
echo "Do the staging deployment here. Would deploy image ${IMAGE_TAG}"
Original file line number Diff line number Diff line change @@ -135,6 +135,12 @@ jobs:
135
135
needs : [build]
136
136
runs-on : ubuntu-latest
137
137
steps :
138
+ - name : Login to Docker Hub
139
+ uses : docker/login-action@v3
140
+ with :
141
+ username : ${{ secrets.DOCKERHUB_USERNAME }}
142
+ password : ${{ secrets.DOCKERHUB_TOKEN }}
143
+
138
144
- name : Do the deploy
139
145
run : |
140
146
echo "Do the staging deployment here. Would deploy image ${IMAGE_TAG}"
You can’t perform that action at this time.
0 commit comments