Skip to content
Merged
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
4 changes: 3 additions & 1 deletion .github/workflows/build_executables.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,13 @@ jobs:
- name: Install dependencies
run: npm cache clean --force && npm install

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

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