diff options
| author | 2026-01-13 14:42:24 +0800 | |
|---|---|---|
| committer | 2026-01-13 14:42:24 +0800 | |
| commit | abda9ea5a767a188ca2b00532ae668d8b663b8b6 (patch) | |
| tree | 8a18f89f79a6f8b70a3bee1832cf4ae28ab08619 /.github | |
| parent | d57b1039723dec624bf40e6abb8fb6ca92a8c98c (diff) | |
| download | DropOut-abda9ea5a767a188ca2b00532ae668d8b663b8b6.tar.gz DropOut-abda9ea5a767a188ca2b00532ae668d8b663b8b6.zip | |
feat: update build matrix to specify target architectures for macOS and Windows
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/release.yml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 02bfa06..bc5ccf0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -59,11 +59,13 @@ jobs: matrix: include: - platform: "ubuntu-22.04" - args: "" - - platform: "macos-14" # M1/M2/M3 (Apple Silicon) + args: "--target x86_64-unknown-linux-gnu" + - platform: "macos-14" + args: "--target x86_64-apple-darwin" + - platform: "macos-latest" args: "--target aarch64-apple-darwin" - platform: "windows-latest" - args: "" + args: "--target x86_64-pc-windows-msvc" runs-on: ${{ matrix.platform }} steps: |