From 4d3391273ce9bc925e0d05c4e50953f08381e54c Mon Sep 17 00:00:00 2001 From: Antoine Aflalo <197810+Belphemur@users.noreply.github.com> Date: Thu, 13 Feb 2025 20:18:14 -0500 Subject: [PATCH] ci: Sets up QEMU for cross-platform builds Configures QEMU to enable emulation of different architectures, allowing for cross-platform builds and testing in the release workflow. --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c3ab9d4..85f6e51 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -28,6 +28,8 @@ jobs: cache: true - uses: sigstore/cosign-installer@v3.8.0 # installs cosign - uses: anchore/sbom-action/download-syft@v0.18.0 # installs syft + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 - uses: docker/login-action@v3 # login to ghcr with: registry: ghcr.io