diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml index 10dfad0..d7dab54 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 bud --platform linux/${{ matrix.arch }} --layers . docker: runs-on: ubuntu-latest