How to skip msi build for windows? #10900
-
Trying to use version like 0.1.0-beta.0, but will fail for msi build. Is it possible to skip msi build completely and upload only exe to release? Here is a sample run of my application |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
You can change this https://github.com/kunkunsh/kunkun/blob/dev/apps/desktop/src-tauri/tauri.conf.json#L39 from Alternatively you can change your workflow file here https://github.com/kunkunsh/kunkun/actions/runs/10707529761/workflow#L28 from |
Beta Was this translation helpful? Give feedback.
You can change this https://github.com/kunkunsh/kunkun/blob/dev/apps/desktop/src-tauri/tauri.conf.json#L39 from
"all"
to an array of targets you want. So if you want "all" without msi it would currently be this:[“deb”, “rpm”, “appimage”, “nsis”, “app”, “dmg”]
.Alternatively you can change your workflow file here https://github.com/kunkunsh/kunkun/actions/runs/10707529761/workflow#L28 from
'--verbose'
to'--verbose -b nsis'