diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3af473ad0..ef5eb17ed 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -36,11 +36,19 @@ jobs: fi bun run dist:mac - - name: Upload macOS DMG + - name: Upload macOS DMG (x64) uses: actions/upload-artifact@v4 with: - name: macos-dmg - path: release/*.dmg + name: macos-dmg-x64 + path: release/*-x64.dmg + retention-days: 30 + if-no-files-found: error + + - name: Upload macOS DMG (arm64) + uses: actions/upload-artifact@v4 + with: + name: macos-dmg-arm64 + path: release/*-arm64.dmg retention-days: 30 if-no-files-found: error diff --git a/package.json b/package.json index db5f39594..c669ddc66 100644 --- a/package.json +++ b/package.json @@ -118,9 +118,6 @@ "entitlements": "build/entitlements.mac.plist", "entitlementsInherit": "build/entitlements.mac.plist" }, - "dmg": { - "sign": true - }, "linux": { "target": "AppImage", "category": "Development",