90
90
password : ${{ secrets.DOCKERHUB_TOKEN }}
91
91
- name : Build and push to Docker Hub
92
92
if : ${{ steps.checkdocker.outputs.secretspresent }}
93
- uses : docker/build-push-action@v5.0.0
93
+ uses : docker/build-push-action@v6
94
94
with :
95
+ context : " ."
95
96
platforms : linux/amd64, linux/arm64
96
97
push : true
97
98
tags : |
@@ -110,9 +111,10 @@ jobs:
110
111
username : ${{ github.actor }}
111
112
password : ${{ secrets.GITHUB_TOKEN }}
112
113
- name : Build and push to GHCR
113
- uses : docker/build-push-action@v5.0.0
114
+ uses : docker/build-push-action@v6
114
115
with :
115
116
platforms : linux/amd64, linux/arm64
117
+ context : " ."
116
118
file : ./Dockerfile
117
119
push : true
118
120
tags : |
@@ -164,8 +166,9 @@ jobs:
164
166
password : ${{ secrets.DOCKERHUB_TOKEN }}
165
167
- name : Build and push to Docker Hub (bun)
166
168
if : ${{ steps.checkdocker.outputs.secretspresent }}
167
- uses : docker/build-push-action@v5.1.0
169
+ uses : docker/build-push-action@v6
168
170
with :
171
+ context : " ."
169
172
platforms : linux/amd64, linux/arm64
170
173
file : ./Dockerfile_bun
171
174
push : true
@@ -183,8 +186,9 @@ jobs:
183
186
username : ${{ github.actor }}
184
187
password : ${{ secrets.GITHUB_TOKEN }}
185
188
- name : Build and push to GHCR (bun)
186
- uses : docker/build-push-action@v5.1.0
189
+ uses : docker/build-push-action@v6
187
190
with :
191
+ context : " ."
188
192
platforms : linux/amd64, linux/arm64
189
193
file : ./Dockerfile_bun
190
194
push : true
0 commit comments