From a746ec537ff2129efe0bba034da54add36dadaaa Mon Sep 17 00:00:00 2001 From: Kusstar Date: Fri, 5 Jan 2024 15:13:49 +0800 Subject: [PATCH 1/2] feat: add aarch64-apple-darwin target to support macOS arm64 --- .github/workflows/publish-npm.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/publish-npm.yml b/.github/workflows/publish-npm.yml index ace1fa2..91dd9b4 100644 --- a/.github/workflows/publish-npm.yml +++ b/.github/workflows/publish-npm.yml @@ -13,6 +13,7 @@ jobs: matrix: include: - { target: x86_64-apple-darwin, os: macos-latest } + - { target: aarch64-apple-darwin, os: macos-latest } - { target: x86_64-unknown-linux-gnu, os: ubuntu-latest } - { target: x86_64-pc-windows-msvc, os: windows-latest } runs-on: ${{ matrix.os }} From f939e1323a1a4f1f2847281dc6d59d04ba77a8a4 Mon Sep 17 00:00:00 2001 From: Kusstar Date: Fri, 5 Jan 2024 15:14:05 +0800 Subject: [PATCH 2/2] doc: update README.md Support matrix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ee0979f..a6dcfb5 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ import {} from "npm:@bindrs/rfd"; | Windows x32 | ❌ | ❌ | ❌ | | Windows arm64 | ❌ | ❌ | ❌ | | macOS x64 | ✅ | ✅ | ✅ | -| macOS arm64 | ❌ | ❌ | ❌ | +| macOS arm64 | ✅ | ✅ | ✅ | | Linux x64 gnu | ✅ | ✅ | ✅ | | Linux x64 musl | ❌ | ❌ | ❌ | | Linux arm gnu | ❌ | ❌ | ❌ |