Skip to content

Commit ab02a15

Browse files
authored
chore: Disable deb and appx make (#293)
Signed-off-by: Jacob Schlecht <dadadah@echoha.us>
1 parent c1df8a7 commit ab02a15

1 file changed

Lines changed: 0 additions & 24 deletions

File tree

‎forge.config.ts‎

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import { MakerAppX } from "@electron-forge/maker-appx";
2-
import { MakerDeb } from "@electron-forge/maker-deb";
31
import { MakerFlatpak } from "@electron-forge/maker-flatpak";
42
import { MakerFlatpakOptionsConfig } from "@electron-forge/maker-flatpak/dist/Config";
53
import { MakerSquirrel } from "@electron-forge/maker-squirrel";
@@ -99,28 +97,6 @@ const makers: ForgeConfig["makers"] = [
9997
}),
10098
];
10199

102-
// skip these makers in CI/CD
103-
if (!process.env.PLATFORM) {
104-
makers.push(
105-
// must be manually built (freezes CI process)
106-
// not much use in being published anyhow
107-
new MakerAppX({
108-
certPass: "",
109-
packageExecutable: `app\\${STRINGS.execName}.exe`,
110-
publisher: "CN=B040CC7E-0016-4AF5-957F-F8977A6CFA3B",
111-
}),
112-
// testing purposes
113-
new MakerDeb({
114-
options: {
115-
productName: STRINGS.name,
116-
productDescription: STRINGS.description,
117-
categories: ["Network"],
118-
icon: `${ASSET_DIR}/icon.png`,
119-
},
120-
}),
121-
);
122-
}
123-
124100
const config: ForgeConfig = {
125101
packagerConfig: {
126102
asar: true,

0 commit comments

Comments
 (0)