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 6355e61
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 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
6 changes: 3 additions & 3 deletions forge.config.ts
Original file line number Diff line number Diff line change
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 @@ -94,7 +94,7 @@ const config: ForgeConfig = {
}),
new MakerRpm({
options: {
icon: './assets/iconset',
icon: './assets/icon.png',
categories: ['Utility'],
productDescription: LONG_DESCRIPTION,
requires: [
Expand All @@ -104,7 +104,7 @@ const config: ForgeConfig = {
}),
new MakerDeb({
options: {
icon: './assets/iconset',
icon: './assets/icon.png',
categories: ['Utility'],
section: 'utils',
priority: 'optional',
Expand Down

0 comments on commit 6355e61

Please sign in to comment.