File tree Expand file tree Collapse file tree 2 files changed +10
-7
lines changed
Expand file tree Collapse file tree 2 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import type { ForgeConfig } from "@electron-forge/shared-types";
22import { MakerZIP } from "@electron-forge/maker-zip" ;
33import { MakerDeb } from "@electron-forge/maker-deb" ;
44import { MakerRpm } from "@electron-forge/maker-rpm" ;
5+ import { MakerSquirrel } from "@electron-forge/maker-squirrel" ;
56import { VitePlugin } from "@electron-forge/plugin-vite" ;
67import { FusesPlugin } from "@electron-forge/plugin-fuses" ;
78import { FuseV1Options , FuseVersion } from "@electron/fuses" ;
@@ -77,6 +78,7 @@ const config: ForgeConfig = {
7778 } ,
7879 makers : [
7980 new MakerZIP ( { } , [ "darwin" ] ) ,
81+ new MakerSquirrel ( { } ) ,
8082 new MakerZIP ( { } , [ "win32" ] ) ,
8183 new MakerRpm ( { } ) ,
8284 new MakerDeb ( {
Original file line number Diff line number Diff line change @@ -167,13 +167,14 @@ async function verifyReleaseAssets() {
167167 } ;
168168
169169 const expectedAssets = [
170- `alifullstack-${ normalizeVersionForPlatform ( version , "rpm" ) } -1.x86_64.rpm` ,
171- `alifullstack-${ normalizeVersionForPlatform ( version , "nupkg" ) } -full.nupkg` ,
172- `alifullstack-${ version } .Setup.exe` ,
173- `alifullstack-darwin-arm64-${ version } .zip` ,
174- `alifullstack-darwin-x64-${ version } .zip` ,
175- `alifullstack_${ normalizeVersionForPlatform ( version , "deb" ) } _amd64.deb` ,
176- "RELEASES" ,
170+ `AliFullStack-${ normalizeVersionForPlatform ( version , "rpm" ) } -1.x86_64.rpm` ,
171+ `AliFullStack-${ normalizeVersionForPlatform ( version , "nupkg" ) } -full.nupkg` ,
172+ `AliFullStack-win32-x64-${ version } .zip` ,
173+ `AliFullStack-darwin-arm64-${ version } .zip` ,
174+ `AliFullStack-darwin-x64-${ version } .zip` ,
175+ `AliFullStack_${ normalizeVersionForPlatform ( version , "deb" ) } _amd64.deb` ,
176+ `AliFullStack Setup ${ version } .exe` ,
177+ `RELEASES` ,
177178 ] ;
178179
179180 console . log ( "📋 Expected assets:" ) ;
You can’t perform that action at this time.
0 commit comments