release: produce updater .app.tar.gz/.sig + drop x86_64 matrix leg#22
Merged
Merged
Conversation
Two pre-existing release-pipeline bugs that have caused every release since v0.1.6 to need manual asset uploads. Both surfaced when v0.1.9 sat in draft with the same missing pair as v0.1.8. createUpdaterArtifacts default is false in Tauri 2 — we never set it. Without it tauri-bundler emits only the `.app` and `.dmg` — not the `.app.tar.gz` + `.app.tar.gz.sig` pair that the in-app auto-updater needs. tauri-action then re-tars the `.app` itself (which is unsigned), and its upload step bails with "Signature not found for the updater JSON. Skipping upload..." Setting `bundle.createUpdaterArtifacts: true` makes the bundler produce both, and tauri-action picks them up automatically. `plugins.updater.active: true` is the runtime-side plugin flag, not the build-side artifact flag — different setting. x86_64-apple-darwin matrix leg removed. The `macos-13` runner GitHub offers for Intel is deprecated and consistently queues past `timeout-minutes` (~75 min) without picking up. The x86_64 leg has not produced a release artifact since v0.1.6 — v0.1.7 / v0.1.8 / v0.1.9 all shipped aarch64-only. Re-add when a stable Intel runner is available again, or move to self- hosted. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
4 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Follow-up to #21. Two pre-existing release-pipeline bugs that have caused every release since v0.1.6 to need manual asset uploads, and that left v0.1.9's draft release without the
.sigandlatest.jsonthat the in-app updater needs.Root cause #1:
createUpdaterArtifactsdefaults tofalseIn Tauri 2's config schema (
crates/tauri-utils/src/config.rs):Our
tauri.conf.jsonnever setbundle.createUpdaterArtifacts, so it defaulted tofalse.tauri-bundlerconsequently only emitted.app+.dmg— not the updater pair (.app.tar.gz+.app.tar.gz.sig).tauri-actionthen re-tarred the.appdirectory itself (unsigned), and its upload step bailed withSignature not found for the updater JSON. Skipping upload....plugins.updater.active: true(already set) is the client-side plugin enablement — it gets compiled into the .app and controls auto-update behavior at runtime.bundle.createUpdaterArtifacts: trueis the separate build-side flag that controls whether artifacts are produced for distribution. We had only the runtime flag, not the build flag.Same bug affected every release since v0.1.5. v0.1.7 / v0.1.8 shipped because someone manually uploaded the missing files — for example, v0.1.8's
.sigandlatest.jsonwere uploaded 17 hours after the workflow finished, per the release assetcreated_at:Root cause #2: x86_64 leg never lands
The Intel matrix leg has not landed a release artifact since v0.1.6:
GitHub's
macos-13runners — the last Intel image — are deprecated and consistently queue pasttimeout-minutes: 75. Removing the leg is consistent with what's actually been shipping for three releases.Re-add when GitHub offers a stable Intel runner again (unlikely) or move to a self-hosted Intel runner.
Verification plan after merge
AOS.Mail_0.1.9_aarch64.dmgAOS.Mail_aarch64.app.tar.gzAOS.Mail_aarch64.app.tar.gz.siglatest.jsonIf all four land, future releases self-publish without manual intervention.
Test plan
Lint & Format/Type Check/Security Auditjobs all pass🤖 Generated with Claude Code