Skip to content

Commit

Permalink
fff
Browse files Browse the repository at this point in the history
  • Loading branch information
dfunckt committed Nov 9, 2023
1 parent 35ed47c commit ab05fea
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 13 deletions.
3 changes: 2 additions & 1 deletion .github/actions/publish/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,8 @@ runs:
BUILD_ARCH='x64,arm64'
elif [[ $runner_os =~ windows|win ]]; then
BUILD_ARCH="ia32,x64"
#BUILD_ARCH="ia32,x64"
BUILD_ARCH="x64"
else
echo "ERROR: unexpected runner OS: ${runner_os}"
Expand Down
24 changes: 12 additions & 12 deletions forge.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import type { ForgeConfig } from '@electron-forge/shared-types';
import { MakerSquirrel } from '@electron-forge/maker-squirrel';
import { MakerZIP } from '@electron-forge/maker-zip';
import { MakerDeb } from '@electron-forge/maker-deb';
import { MakerRpm } from '@electron-forge/maker-rpm';
// import { MakerRpm } from '@electron-forge/maker-rpm';
import { MakerDMG } from '@electron-forge/maker-dmg';
import { MakerAppImage } from '@reforged/maker-appimage';
import { AutoUnpackNativesPlugin } from '@electron-forge/plugin-auto-unpack-natives';
Expand Down Expand Up @@ -58,7 +58,7 @@ const config: ForgeConfig = {
},
rebuildConfig: {},
makers: [
new MakerZIP(),
new MakerZIP({}, ['darwin']),
new MakerSquirrel({
setupIcon: 'assets/icon.ico',
...winSigningConfig,
Expand Down Expand Up @@ -92,16 +92,16 @@ const config: ForgeConfig = {
categories: ['Utility'],
}
}),
new MakerRpm({
options: {
icon: './assets/iconset',
categories: ['Utility'],
productDescription: LONG_DESCRIPTION,
requires: [
'util-linux',
],
},
}),
// new MakerRpm({
// options: {
// icon: './assets/iconset',
// categories: ['Utility'],
// productDescription: LONG_DESCRIPTION,
// requires: [
// 'util-linux',
// ],
// },
// }),
new MakerDeb({
options: {
icon: './assets/iconset',
Expand Down

0 comments on commit ab05fea

Please sign in to comment.