From 8a6878bbf7989e1f24470151c2557bf5dde24611 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20=C4=8Cerm=C3=A1k?= Date: Thu, 17 Nov 2022 15:18:04 +0100 Subject: [PATCH] fixup! Build the containers on x86_64, ppc64le, s390x & aarch64 on Github --- .github/workflows/container.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml index 10dfad0..5e4d4dd 100644 --- a/.github/workflows/container.yml +++ b/.github/workflows/container.yml @@ -11,11 +11,15 @@ on: jobs: podman: + strategy: + matrix: + arch: ["x86_64", "arm64", "ppc64le", "s390x"] + runs-on: ubuntu-latest - name: Build the container with buildah + name: Build the containers with buildah steps: - uses: actions/checkout@v3 - - run: buildah bud --layers . + - run: buildah build --platform linux/${{ matrix.arch }} --layers . docker: runs-on: ubuntu-latest