diff options
| author | 2026-01-13 14:04:21 +0800 | |
|---|---|---|
| committer | 2026-01-13 14:04:21 +0800 | |
| commit | fe89b006fda27cc7db9b875eb000446b08faf580 (patch) | |
| tree | 1709d34befff1601e8eaca1f3d9de7640510118e /.github | |
| parent | bbe6d36748e7a4d71e8ceb3e7717ef0379963859 (diff) | |
| download | DropOut-fe89b006fda27cc7db9b875eb000446b08faf580.tar.gz DropOut-fe89b006fda27cc7db9b875eb000446b08faf580.zip | |
feat: Update macOS build targets to support macOS 14 and universal architecture
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/release.yml | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 37eabcd..38b8eb8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -82,10 +82,23 @@ jobs: include: - target: x86_64-apple-darwin arch_name: x86_64 - os: macos-13 + os: macos-14 - target: aarch64-apple-darwin arch_name: aarch64 + os: macos-14 + - target: universal-apple-darwin + arch_name: universal + os: macos-14 + - target: x86_64-apple-darwin + arch_name: x86_64 os: macos-latest + - target: aarch64-apple-darwin + arch_name: aarch64 + os: macos-latest + - target: universal-apple-darwin + arch_name: universal + os: macos-latest + steps: - uses: actions/checkout@v4 |