Fix tauri_bundle formatting

This commit is contained in:
Thorsten Sommer 2026-03-23 15:17:18 +01:00
parent 6875b7c8d2
commit 35a1cb6cf1
Signed by untrusted user who does not match committer: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -220,42 +220,42 @@ jobs:
rust_target: 'aarch64-apple-darwin' rust_target: 'aarch64-apple-darwin'
dotnet_runtime: 'osx-arm64' dotnet_runtime: 'osx-arm64'
dotnet_name_postfix: '-aarch64-apple-darwin' dotnet_name_postfix: '-aarch64-apple-darwin'
tauri_bundle: 'dmg updater' tauri_bundle: 'dmg,updater'
tauri_bundle_pr: 'dmg' tauri_bundle_pr: 'dmg'
- platform: 'macos-latest' # for Intel-based macOS - platform: 'macos-latest' # for Intel-based macOS
rust_target: 'x86_64-apple-darwin' rust_target: 'x86_64-apple-darwin'
dotnet_runtime: 'osx-x64' dotnet_runtime: 'osx-x64'
dotnet_name_postfix: '-x86_64-apple-darwin' dotnet_name_postfix: '-x86_64-apple-darwin'
tauri_bundle: 'dmg updater' tauri_bundle: 'dmg,updater'
tauri_bundle_pr: 'dmg' tauri_bundle_pr: 'dmg'
- platform: 'ubuntu-22.04' # for x86-based Linux - platform: 'ubuntu-22.04' # for x86-based Linux
rust_target: 'x86_64-unknown-linux-gnu' rust_target: 'x86_64-unknown-linux-gnu'
dotnet_runtime: 'linux-x64' dotnet_runtime: 'linux-x64'
dotnet_name_postfix: '-x86_64-unknown-linux-gnu' dotnet_name_postfix: '-x86_64-unknown-linux-gnu'
tauri_bundle: 'appimage deb updater' tauri_bundle: 'appimage,deb,updater'
tauri_bundle_pr: 'appimage deb' tauri_bundle_pr: 'appimage,deb'
- platform: 'ubuntu-22.04-arm' # for ARM-based Linux - platform: 'ubuntu-22.04-arm' # for ARM-based Linux
rust_target: 'aarch64-unknown-linux-gnu' rust_target: 'aarch64-unknown-linux-gnu'
dotnet_runtime: 'linux-arm64' dotnet_runtime: 'linux-arm64'
dotnet_name_postfix: '-aarch64-unknown-linux-gnu' dotnet_name_postfix: '-aarch64-unknown-linux-gnu'
tauri_bundle: 'appimage deb updater' tauri_bundle: 'appimage,deb,updater'
tauri_bundle_pr: 'appimage deb' tauri_bundle_pr: 'appimage,deb'
- platform: 'windows-latest' # for x86-based Windows - platform: 'windows-latest' # for x86-based Windows
rust_target: 'x86_64-pc-windows-msvc' rust_target: 'x86_64-pc-windows-msvc'
dotnet_runtime: 'win-x64' dotnet_runtime: 'win-x64'
dotnet_name_postfix: '-x86_64-pc-windows-msvc.exe' dotnet_name_postfix: '-x86_64-pc-windows-msvc.exe'
tauri_bundle: 'nsis updater' tauri_bundle: 'nsis,updater'
tauri_bundle_pr: 'nsis' tauri_bundle_pr: 'nsis'
- platform: 'windows-latest' # for ARM-based Windows - platform: 'windows-latest' # for ARM-based Windows
rust_target: 'aarch64-pc-windows-msvc' rust_target: 'aarch64-pc-windows-msvc'
dotnet_runtime: 'win-arm64' dotnet_runtime: 'win-arm64'
dotnet_name_postfix: '-aarch64-pc-windows-msvc.exe' dotnet_name_postfix: '-aarch64-pc-windows-msvc.exe'
tauri_bundle: 'nsis updater' tauri_bundle: 'nsis,updater'
tauri_bundle_pr: 'nsis' tauri_bundle_pr: 'nsis'
runs-on: ${{ matrix.platform }} runs-on: ${{ matrix.platform }}