From cd75429188a4e55168eda66add435677070f30f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9D=D0=B8=D0=BA=D0=B8=D1=82=D0=B0=20=D0=9C=D0=B8=D1=82?= =?UTF-8?q?=D1=83=D1=81=D0=BE=D0=B2?= Date: Wed, 29 Jul 2026 15:37:57 +0300 Subject: [PATCH] ci: request platform-specific Tauri bundles --- .github/workflows/release.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 332c684..04eb638 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,6 +1,7 @@ name: Release on: + workflow_dispatch: push: tags: ["v*"] @@ -16,15 +17,15 @@ jobs: include: - platform: macOS universal os: macos-14 - args: --target universal-apple-darwin + args: --bundles app,dmg --target universal-apple-darwin rust-targets: aarch64-apple-darwin,x86_64-apple-darwin - platform: Windows x64 os: windows-latest - args: --target x86_64-pc-windows-msvc + args: --bundles nsis --target x86_64-pc-windows-msvc rust-targets: x86_64-pc-windows-msvc - platform: Linux x64 os: ubuntu-22.04 - args: --target x86_64-unknown-linux-gnu + args: --bundles appimage,deb --target x86_64-unknown-linux-gnu rust-targets: x86_64-unknown-linux-gnu runs-on: ${{ matrix.os }}