We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42451f7 commit a5cd577Copy full SHA for a5cd577
.github/workflows/build-and-push-to-registry.yml
@@ -17,11 +17,17 @@ jobs:
17
- name: Checkout sources
18
uses: actions/checkout@v4
19
20
+ - name: Install qemu dependency
21
+ run: |
22
+ sudo apt-get update
23
+ sudo apt-get install -y qemu-user-static
24
+
25
- name: Build images
26
id: build
27
uses: redhat-actions/buildah-build@v2
28
with:
29
image: ${{ github.repository }}
30
+ platforms: linux/amd64, linux/aarch64
31
context: /
32
tags: ${{ contains(github.ref_name, 'main') && 'latest' || github.ref_name }}-sdk
33
containerfiles: /Dockerfile
0 commit comments