From b905026010c1b035a8c6824f23c6362d119834f8 Mon Sep 17 00:00:00 2001 From: William Bell <62452284+Ugric@users.noreply.github.com> Date: Sat, 16 Aug 2025 04:31:21 +0100 Subject: [PATCH] fix rosetta not used --- .github/workflows/release.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 72f9339..a704f69 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -76,7 +76,11 @@ jobs: run: | python -m pip install --upgrade pip pip install conan - conan profile detect + if [ "${{ matrix.arch }}" = "x86_64" ] && [ "$(uname -m)" = "arm64" ]; then + arch -x86_64 conan profile detect + else + conan profile detect + fi - name: Build run: |