Add signed Windows installer package to the "Arduino Pro IDE" workflow

The previous "zip" Windows package is retained, but an installer is also produced.
This commit is contained in:
per1234
2020-10-13 16:01:32 -07:00
parent e755a1cd7e
commit 7068b9b1d3
4 changed files with 35 additions and 27 deletions

View File

@@ -280,7 +280,7 @@ ${fs.readFileSync(path('..', 'build', 'package.json')).toString()}
break;
}
case 'win32': {
filesToCopy.push(...glob.sync('**/arduino-pro-ide*.zip', { cwd }).map(p => join(cwd, p)));
filesToCopy.push(...glob.sync('**/arduino-pro-ide*.{exe,zip}', { cwd }).map(p => join(cwd, p)));
break;
}
case 'darwin': {