diff --git a/.github/workflows/build_executables.yaml b/.github/workflows/build_executables.yaml index 724b75f..a0a0e31 100644 --- a/.github/workflows/build_executables.yaml +++ b/.github/workflows/build_executables.yaml @@ -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' }}