From 76b8c9f5e21d5f03de114c774f376c5970a0d8df Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Sun, 21 Dec 2025 13:45:56 +0000 Subject: [PATCH] ci: add Apple Silicon build target to release workflow Pins existing macOS build to macos-13 (Intel) and adds macos-14 (Apple Silicon) target. --- .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 fdbfa1d..d371d3a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,9 +21,12 @@ jobs: - os: windows-latest artifact_name: lanshare.exe asset_name: lanshare-windows-amd64 - - os: macos-latest + - os: macos-13 artifact_name: lanshare asset_name: lanshare-macos-amd64 + - os: macos-14 + artifact_name: lanshare + asset_name: lanshare-macos-arm64 steps: - name: Checkout code