mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00:00
feat(desktop): expand supported native distribution formats (#4783)
This commit is contained in:
parent
07ec771758
commit
90844301e8
2 changed files with 11 additions and 1 deletions
3
.github/workflows/release.yml
vendored
3
.github/workflows/release.yml
vendored
|
|
@ -306,8 +306,11 @@ jobs:
|
|||
name: desktop-${{ runner.os }}
|
||||
path: |
|
||||
desktop/build/compose/binaries/main-release/*/*.dmg
|
||||
desktop/build/compose/binaries/main-release/*/*.pkg
|
||||
desktop/build/compose/binaries/main-release/*/*.msi
|
||||
desktop/build/compose/binaries/main-release/*/*.exe
|
||||
desktop/build/compose/binaries/main-release/*/*.deb
|
||||
desktop/build/compose/binaries/main-release/*/*.rpm
|
||||
retention-days: 1
|
||||
if-no-files-found: ignore
|
||||
|
||||
|
|
|
|||
|
|
@ -49,7 +49,14 @@ compose.desktop {
|
|||
}
|
||||
|
||||
nativeDistributions {
|
||||
targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb)
|
||||
targetFormats(
|
||||
TargetFormat.Dmg,
|
||||
TargetFormat.Pkg,
|
||||
TargetFormat.Exe,
|
||||
TargetFormat.Msi,
|
||||
TargetFormat.Deb,
|
||||
TargetFormat.Rpm,
|
||||
)
|
||||
packageName = "Meshtastic"
|
||||
|
||||
// App Icon
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue