From 9d4a9f3c8ffd7b1d399fc664e45b74fa14081d1f Mon Sep 17 00:00:00 2001 From: sparksfly Date: Fri, 21 Aug 2026 16:45:24 +0800 Subject: [PATCH] =?UTF-8?q?ci(release):=20=E4=B8=BA=E4=B8=8D=E5=90=8C?= =?UTF-8?q?=E5=B9=B3=E5=8F=B0=E6=B7=BB=E5=8A=A0=E5=AF=B9=E5=BA=94=E6=89=93?= =?UTF-8?q?=E5=8C=85=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 为macOS平台添加app和dmg打包格式,为Windows平台添加nsis打包格式 --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5568a95..18c4961 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,11 +17,11 @@ jobs: include: # macOS Apple Silicon (M1/M2/M3) - platform: "macos-latest" - args: "--target aarch64-apple-darwin" + args: "--target aarch64-apple-darwin --bundles app,dmg" # Windows x64 - platform: "windows-latest" - args: "" + args: "--bundles nsis" runs-on: ${{ matrix.platform }}