From 90290e511b145c57b61d4a3a637e7dab39fb5a90 Mon Sep 17 00:00:00 2001 From: Jure <44338+hoornet@users.noreply.github.com> Date: Mon, 9 Mar 2026 19:38:10 +0100 Subject: [PATCH] Add macOS (Apple Silicon + Intel) to release matrix Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/release.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9b3bea4..5acbde8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,6 +17,10 @@ jobs: args: '' - platform: windows-latest args: '' + - platform: macos-latest + args: '--target aarch64-apple-darwin' + - platform: macos-13 + args: '--target x86_64-apple-darwin' runs-on: ${{ matrix.platform }} @@ -30,6 +34,8 @@ jobs: - name: Install Rust stable uses: dtolnay/rust-toolchain@stable + with: + targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin' || matrix.platform == 'macos-13' && 'x86_64-apple-darwin' || '' }} - name: Install Linux dependencies if: matrix.platform == 'ubuntu-22.04' @@ -72,8 +78,11 @@ jobs: ### Install **Linux:** Download the `.AppImage`, make it executable (`chmod +x`), and run it. **Windows:** Download the `.exe` installer and run it. + **macOS (Apple Silicon):** Download the `aarch64.dmg` and open it. + **macOS (Intel):** Download the `x86_64.dmg` and open it. ### Requirements No dependencies required — everything is bundled. releaseDraft: false prerelease: false + args: ${{ matrix.args }}