From 6990beb9056b265c52545e6d9535703a0dc94fb9 Mon Sep 17 00:00:00 2001 From: Donnie Ashok Date: Sat, 6 Jun 2026 20:29:29 +0200 Subject: [PATCH] feat: add arm64 arch --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a71e15a..2c31a73 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,6 +47,9 @@ jobs: fi echo "tags=$TAGS" >> "$GITHUB_OUTPUT" + - name: Set up QEMU for multi-arch + uses: docker/setup-qemu-action@v3 + - name: Build image id: build uses: redhat-actions/buildah-build@v2 @@ -54,6 +57,7 @@ jobs: image: tools tags: ${{ steps.tags.outputs.tags }} containerfiles: Containerfile + platforms: linux/amd64,linux/arm64 - name: Push to GHCR uses: redhat-actions/push-to-registry@v2