File tree 1 file changed +6
-4
lines changed
1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 14
14
ref : ${{ github.event.client_payload.ref }}
15
15
- name : Set up Docker Buildx
16
16
uses : docker/setup-buildx-action@v3
17
+ with :
18
+ driver : cloud
19
+ endpoint : " mcp/cloud-ai-labs"
20
+ install : true
17
21
- name : Login to Docker Hub
18
22
uses : docker/login-action@v3
19
23
with :
@@ -30,15 +34,13 @@ jobs:
30
34
# If folder has pyproject.toml
31
35
if [ -f "$folder/pyproject.toml" ]; then
32
36
cd $folder
33
- docker buildx build --builder cloud-ai-labs \
34
- --platform linux/amd64,linux/arm64 \
37
+ docker buildx build --platform linux/amd64,linux/arm64 \
35
38
--tag dockerpublicbot/mcp-$foldername:${{ github.event.client_payload.release_tag }} \
36
39
--push .
37
40
cd $top_level_folder
38
41
else
39
42
foldername=$(basename $folder)
40
- docker buildx build --builder cloud-ai-labs \
41
- --platform linux/amd64,linux/arm64 \
43
+ docker buildx build --platform linux/amd64,linux/arm64 \
42
44
--tag dockerpublicbot/mcp-$foldername:${{ github.event.client_payload.release_tag }} \
43
45
--file $folder/Dockerfile \
44
46
--push .
You can’t perform that action at this time.
0 commit comments