From a62e0a4998ddab0e2288e28b1cd169a80853e923 Mon Sep 17 00:00:00 2001 From: bun913 Date: Sun, 12 Apr 2026 13:22:39 +0900 Subject: [PATCH] fix: native compile --- .github/workflows/release.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bbcdbc6..e8cca1b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -98,16 +98,12 @@ jobs: matrix: include: - os: macos-latest - target: darwin-arm64 artifact: zephyr-macos-arm64 - - os: macos-latest - target: darwin-x64 + - os: macos-26-intel artifact: zephyr-macos-x64 - os: ubuntu-latest - target: linux-x64 artifact: zephyr-linux-x64 - os: windows-latest - target: windows-x64 artifact: zephyr-windows-x64.exe steps: @@ -137,7 +133,7 @@ jobs: run: bun install - name: Build binary - run: bun build src/index.ts --compile --target=bun-${{ matrix.target }} --outfile ${{ matrix.artifact }} + run: bun build src/index.ts --compile --outfile ${{ matrix.artifact }} - name: Ad-hoc sign binary if: runner.os == 'macOS'