Skip to content

Commit af18009

Browse files
committed
Add portable build configuration for Windows and Linux
- Add portable and zip targets for Windows - Add tar.gz target for Linux alongside AppImage - Configure portable artifact naming
1 parent e2c0410 commit af18009

File tree

1 file changed

+17
-2
lines changed

1 file changed

+17
-2
lines changed

package.json

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,25 @@
7171
"category": "public.app-category.developer-tools"
7272
},
7373
"win": {
74-
"target": "nsis"
74+
"target": [
75+
{
76+
"target": "portable",
77+
"arch": ["x64"]
78+
},
79+
{
80+
"target": "zip",
81+
"arch": ["x64"]
82+
}
83+
]
7584
},
7685
"linux": {
77-
"target": "AppImage"
86+
"target": [
87+
"AppImage",
88+
"tar.gz"
89+
]
90+
},
91+
"portable": {
92+
"artifactName": "DTUI2-portable-${version}.${ext}"
7893
}
7994
}
8095
}

0 commit comments

Comments
 (0)