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: |