Skip to content
Closed
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
9 changes: 9 additions & 0 deletions .github/workflows/build-and-make.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,15 @@ jobs:
- name: Make Electron app
run: npm run make:app

- name: Remove macOS quarantine attributes
if: matrix.os == 'macos-latest'
run: |
echo "Removing quarantine attributes from DMG and ZIP files..."
find dist/executables -type f \( -name "*.dmg" -o -name "*.zip" \) -print0 | xargs -0 xattr -cr || true

echo "Ensuring .app bundle itself has no quarantine..."
find dist/executables -type d -name "*.app" -print0 | xargs -0 xattr -cr || true

- name: Upload artifacts (macOS)
if: matrix.os == 'macos-latest'
uses: actions/upload-artifact@v4
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@
"gatekeeperAssess": false,
"hardenedRuntime": false,
"entitlements": null,
"entitlementsInherit": null
"entitlementsInherit": null,
"sign": false
},
"linux": {
"category": "Video",
Expand Down