We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4899cb commit 03adfe0Copy full SHA for 03adfe0
1 file changed
.github/actions/docker-publish/action.yaml
@@ -27,6 +27,10 @@ inputs:
27
build-args:
28
description: List of build-time variables
29
required: false
30
+ platforms:
31
+ description: Target platforms for the build (e.g. linux/amd64,linux/arm64)
32
+ default: linux/amd64,linux/arm64
33
+ required: false
34
35
outputs:
36
image:
@@ -64,6 +68,9 @@ runs:
64
68
type=sha,prefix=
65
69
type=semver,pattern={{raw}}
66
70
71
+ - name: Set up QEMU
72
+ uses: docker/setup-qemu-action@v3
73
+
67
74
- name: Set up Docker Buildx
75
uses: docker/setup-buildx-action@v3
76
@@ -78,6 +85,7 @@ runs:
78
85
labels: ${{ steps.meta.outputs.labels }}
79
86
annotations: ${{ steps.meta.outputs.annotations }}
80
87
build-args: ${{ inputs.build-args }}
88
+ platforms: ${{ inputs.platforms }}
81
89
cache-from: type=gha
82
90
cache-to: type=gha,mode=max
83
91
0 commit comments