We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3e1f56 commit 9248b6aCopy full SHA for 9248b6a
.github/workflows/call-build-images.yaml
@@ -102,6 +102,13 @@ jobs:
102
- name: Set up Docker Buildx
103
uses: docker/setup-buildx-action@v3
104
105
+ # s390x requires emulation
106
+ - name: Set up QEMU
107
+ if: contains(matrix.platform, 's390x')
108
+ uses: docker/setup-qemu-action@v3
109
+ with:
110
+ image: tonistiigi/binfmt:qemu-v7.0.0-28 # See: https://github.com/docker/setup-qemu-action/issues/198#issuecomment-2653791775
111
+
112
- name: Log in to the Container registry
113
uses: docker/login-action@v3
114
with:
0 commit comments