File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -50,11 +50,22 @@ jobs:
50
50
with :
51
51
images : ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
52
52
53
+ - name : Set up QEMU
54
+ uses : docker/setup-qemu-action@master
55
+ with :
56
+ platforms : all
57
+
58
+ - name : Set up Docker Buildx
59
+ id : buildx
60
+ uses : docker/setup-buildx-action@master
61
+
53
62
# Build and push Docker image with Buildx (don't push on PR)
54
63
# https://github.com/docker/build-push-action
55
64
- name : Build and push Docker image
56
65
uses : docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
57
66
with :
67
+ builder : ${{ steps.buildx.outputs.name }}
68
+ platforms : linux/amd64,linux/arm64
58
69
context : .
59
70
push : ${{ github.event_name != 'pull_request' }}
60
71
tags : ${{ steps.meta.outputs.tags }}
You can’t perform that action at this time.
0 commit comments