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 5dff4e0
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
12 changes: 9 additions & 3 deletions .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 Expand Up @@ -164,6 +165,11 @@ runs:
with:
name: gh-release-${{ github.event.pull_request.head.sha || github.event.head_commit.id }}
path: |
out/**/*.{deb,rpm,dmg,zip}
out/**/*Setup.exe
out/make/**/*.zip
out/make/**/*.dmg
out/make/**/*.rpm
out/make/**/*.deb
out/make/**/*.AppImage
out/make/**/*Setup.exe
retention-days: 1
if-no-files-found: error
2 changes: 1 addition & 1 deletion .github/workflows/flowzone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
(github.event.pull_request.head.repo.full_name != github.repository && github.event_name == 'pull_request_target')
secrets: inherit
with:
tests_run_on: '["ubuntu-20.04","macos-12","windows-2019"]'
tests_run_on: '["ubuntu-20.04","macos-12"]'
restrict_custom_actions: false
github_prerelease: true
repo_config: true
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 5dff4e0

Please sign in to comment.