From a79069deacf959ff680d671d8bf7ae07939b42c4 Mon Sep 17 00:00:00 2001 From: FujiApple Date: Sun, 19 Nov 2023 18:16:45 +0800 Subject: [PATCH] build: add `aarch64-apple-darwin` release target (#801) --- .github/workflows/release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c0ec96f93..b6491d9f1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -39,7 +39,7 @@ jobs: RUST_BACKTRACE: 1 strategy: matrix: - build: [linux-gnu, linux-musl, linux-arm, macos, netbsd, win-msvc] + build: [linux-gnu, linux-musl, linux-arm, macos, macos-arm, netbsd, win-msvc] include: - build: linux-gnu os: ubuntu-22.04 @@ -53,6 +53,9 @@ jobs: - build: macos os: macos-latest target: x86_64-apple-darwin + - build: macos-arm + os: ubuntu-22.04 + target: aarch64-apple-darwin - build: netbsd os: ubuntu-22.04 target: x86_64-unknown-netbsd