diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 040fb80..cc3a13d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,9 +18,14 @@ jobs: - target: aarch64-apple-darwin runner: macos-latest arch: arm64 - - target: x86_64-apple-darwin - runner: macos-13 - arch: x64 + # x86_64 (Intel) builds were dropped after v0.1.9. GitHub's + # `macos-13` runners — the last Intel image — are deprecated + # and consistently queue past `timeout-minutes`, so the + # x86_64 leg has not produced a release artifact since + # v0.1.6. All published releases since then have been + # aarch64-only. Re-add this leg when GitHub offers a stable + # Intel runner again (unlikely) or move to a self-hosted + # Intel runner. runs-on: ${{ matrix.runner }} timeout-minutes: 75 diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 1737434..0e87e67 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -34,6 +34,7 @@ "bundle": { "active": true, "targets": ["app", "dmg"], + "createUpdaterArtifacts": true, "icon": ["icons/32x32.png", "icons/128x128.png", "icons/128x128@2x.png", "icons/icon.icns"], "category": "public.app-category.productivity", "shortDescription": "Agent-operated email — multi-inbox Mac mail with Claude in the loop.",