From c6d6ca4afd0a1358e77da966931fc2e50213a2cd Mon Sep 17 00:00:00 2001 From: dalance Date: Tue, 30 Jul 2024 11:18:12 +0900 Subject: [PATCH] Fix CI --- .github/workflows/release.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b28957e36..d3a0a5259 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,6 +27,11 @@ jobs: run: | rustup target add x86_64-unknown-linux-musl sudo apt-get -qq install musl-tools + - name: Setup aarch64 mac + if: matrix.os == 'macOS-latest' + run: | + rustup target add aarch64-apple-darwin + rustup target add x86_64-apple-darwin - name: Build for linux if: matrix.os == 'ubuntu-latest' run: |