Disable publishing
This commit is contained in:
parent
c4e3660299
commit
24c472a970
1 changed files with 3 additions and 0 deletions
|
@ -3,18 +3,21 @@ const builder = require('electron-builder');
|
|||
function packWin() {
|
||||
return builder.build({
|
||||
targets: builder.Platform.WINDOWS.createTarget(),
|
||||
publish: 'never',
|
||||
});
|
||||
}
|
||||
|
||||
function packMac() {
|
||||
return builder.build({
|
||||
targets: builder.Platform.MAC.createTarget(),
|
||||
publish: 'never',
|
||||
});
|
||||
}
|
||||
|
||||
function packLinux() {
|
||||
return builder.build({
|
||||
targets: builder.Platform.LINUX.createTarget(),
|
||||
publish: 'never',
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue