Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/build_executables.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,12 @@ jobs:
- name: Install dependencies
run: npm cache clean --force && npm install

- name: Remove signature from native binaries
if: matrix.os == 'macos-latest'
run: |
codesign --remove-signature resources/mac/qgenie-api || true
codesign --remove-signature resources/mac/qgenie-ai || true

- name: Build the app
run: npm run build -- --${{ matrix.os == 'macos-latest' && 'mac' || 'win' }}

Expand Down
1 change: 1 addition & 0 deletions electron-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ nsis:
uninstallDisplayName: ${productName}
createDesktopShortcut: always
mac:
identity: null
category: public.app-category.developer-tools
icon: build/icon.icns
target: dmg
Expand Down