File tree Expand file tree Collapse file tree
workspaces/desktop-release-action/src Expand file tree Collapse file tree Original file line number Diff line number Diff line change 6161 "win" : {
6262 "target" : [
6363 " nsis" ,
64- " msi"
64+ " msi" ,
65+ " zip"
6566 ],
6667 "icon" : " build/icon.ico" ,
6768 "publisherName" : " Sectigo RSA Code Signing CA" ,
Original file line number Diff line number Diff line change 5454 "abort-controller" : " ^3.0.0" ,
5555 "electron-dl" : " ^3.2.1" ,
5656 "electron-store" : " ^6.0.1" ,
57- "electron-updater" : " ^4.3.9 " ,
57+ "electron-updater" : " ^4.6.1 " ,
5858 "i18next" : " ^20.4.0" ,
5959 "react" : " ^17.0.2" ,
6060 "react-dom" : " ^17.0.2" ,
102102 "conventional-changelog-cli" : " ^2.1.1" ,
103103 "convert-svg-to-png" : " ^0.5.0" ,
104104 "electron" : " ^16.0.2" ,
105- "electron-builder" : " ^22.11.7 " ,
105+ "electron-builder" : " ^22.14.5 " ,
106106 "electron-devtools-installer" : " ^3.2.0" ,
107107 "electron-notarize" : " ^1.1.1" ,
108108 "eslint" : " ^7.32.0" ,
Original file line number Diff line number Diff line change @@ -3,10 +3,13 @@ import * as core from '@actions/core';
33import { runElectronBuilder } from './shell' ;
44
55export const packOnWindows = async ( ) : Promise < void > => {
6- await runElectronBuilder ( `--ia32 --x64 --win nsis msi` , {
6+ await runElectronBuilder ( `--x64 --ia32 --win nsis msi` , {
77 CSC_LINK : core . getInput ( 'win_csc_link' ) ,
88 CSC_KEY_PASSWORD : core . getInput ( 'win_csc_key_password' ) ,
99 } ) ;
1010
11- await runElectronBuilder ( `--ia32 --x64 --win appx` ) ;
11+ await runElectronBuilder ( `--x64 --ia32 --win appx` , {
12+ CSC_LINK : core . getInput ( 'win_csc_link' ) ,
13+ CSC_KEY_PASSWORD : core . getInput ( 'win_csc_key_password' ) ,
14+ } ) ;
1215} ;
You can’t perform that action at this time.
0 commit comments