Added updater bundle

This commit is contained in:
Thorsten Sommer 2024-06-11 21:25:27 +02:00
parent a6de936dcb
commit 96d61ae6b8
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -17,31 +17,31 @@ jobs:
rust_target: 'aarch64-apple-darwin'
dotnet_runtime: 'osx-arm64'
dotnet_name_postfix: '-aarch64-apple-darwin'
tauri_bundle: 'dmg'
tauri_bundle: 'dmg updater'
- 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'
tauri_bundle: 'dmg updater'
- 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'
tauri_bundle: 'appimage deb updater'
- 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: 'msi nsis'
tauri_bundle: 'msi nsis updater'
- 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'
tauri_bundle: 'nsis updater'
runs-on: ${{ matrix.platform }}
steps: