From 77e93441c064f4756e6dac42376c87127d89e8ac Mon Sep 17 00:00:00 2001 From: Valerio Date: Fri, 27 Mar 2026 20:51:51 +0100 Subject: [PATCH] fix(ci): add QEMU for arm64 apt-get in Docker build Plain docker build --platform linux/arm64 on amd64 runner needs QEMU to execute RUN commands. QEMU is only needed for apt-get (seconds), not for Rust compilation (the binaries are pre-built). Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 583e835..7f6fbd1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -102,6 +102,10 @@ jobs: steps: - uses: actions/checkout@v4 + - uses: docker/setup-qemu-action@v3 + with: + platforms: arm64 + - uses: docker/setup-buildx-action@v3 - uses: docker/login-action@v3