diff -ura package.orig/gulpfile.js package.new/gulpfile.js --- package.orig/gulpfile.js 2020-02-11 13:55:00.000000000 +0100 +++ package.new/gulpfile.js 2020-02-11 15:43:14.856730664 +0100 @@ -62,6 +62,20 @@ c: { productName: 'rocketchat' }, })); +task('release:linux-x64', () => build({ + publish: 'never', + x64: true, + linux: [], + c: { productName: 'rocketchat' }, +})); + +task('release:linux-ia32', () => build({ + publish: 'never', + ia32: true, + linux: [], + c: { productName: 'rocketchat' }, +})); + task('release:win32', () => build({ publish: NODE_ENV === 'production' ? 'onTagOrDraft' : 'never', x64: true,