diff --git a/.github/workflows/build-and-release.yml b/.github/workflows/build-and-release.yml index b2740086..60963a27 100644 --- a/.github/workflows/build-and-release.yml +++ b/.github/workflows/build-and-release.yml @@ -220,42 +220,42 @@ jobs: rust_target: 'aarch64-apple-darwin' dotnet_runtime: 'osx-arm64' dotnet_name_postfix: '-aarch64-apple-darwin' - tauri_bundle: 'dmg updater' + tauri_bundle: 'dmg,updater' tauri_bundle_pr: 'dmg' - platform: 'macos-latest' # for Intel-based macOS rust_target: 'x86_64-apple-darwin' dotnet_runtime: 'osx-x64' dotnet_name_postfix: '-x86_64-apple-darwin' - tauri_bundle: 'dmg updater' + tauri_bundle: 'dmg,updater' tauri_bundle_pr: 'dmg' - platform: 'ubuntu-22.04' # for x86-based Linux rust_target: 'x86_64-unknown-linux-gnu' dotnet_runtime: 'linux-x64' dotnet_name_postfix: '-x86_64-unknown-linux-gnu' - tauri_bundle: 'appimage deb updater' - tauri_bundle_pr: 'appimage deb' + tauri_bundle: 'appimage,deb,updater' + tauri_bundle_pr: 'appimage,deb' - platform: 'ubuntu-22.04-arm' # for ARM-based Linux rust_target: 'aarch64-unknown-linux-gnu' dotnet_runtime: 'linux-arm64' dotnet_name_postfix: '-aarch64-unknown-linux-gnu' - tauri_bundle: 'appimage deb updater' - tauri_bundle_pr: 'appimage deb' + tauri_bundle: 'appimage,deb,updater' + tauri_bundle_pr: 'appimage,deb' - platform: 'windows-latest' # for x86-based Windows rust_target: 'x86_64-pc-windows-msvc' dotnet_runtime: 'win-x64' dotnet_name_postfix: '-x86_64-pc-windows-msvc.exe' - tauri_bundle: 'nsis updater' + tauri_bundle: 'nsis,updater' tauri_bundle_pr: 'nsis' - platform: 'windows-latest' # for ARM-based Windows rust_target: 'aarch64-pc-windows-msvc' dotnet_runtime: 'win-arm64' dotnet_name_postfix: '-aarch64-pc-windows-msvc.exe' - tauri_bundle: 'nsis updater' + tauri_bundle: 'nsis,updater' tauri_bundle_pr: 'nsis' runs-on: ${{ matrix.platform }}