From 0685ae67731dc5e98d9466608c05cc32a8965d30 Mon Sep 17 00:00:00 2001 From: Bryan Roscoe Date: Mon, 15 Jun 2026 08:33:50 -0500 Subject: [PATCH] Enable createUpdaterArtifacts so the updater manifest (latest.json) publishes Tauri 2 only produces signed updater artifacts when bundle.createUpdaterArtifacts is true; without it tauri-action's includeUpdaterJson has nothing to emit, so the Publish-updater-manifest job failed and no latest.json was published. --- v2/src-tauri/tauri.conf.json | 1 + 1 file changed, 1 insertion(+) diff --git a/v2/src-tauri/tauri.conf.json b/v2/src-tauri/tauri.conf.json index ba9603e..935c02f 100644 --- a/v2/src-tauri/tauri.conf.json +++ b/v2/src-tauri/tauri.conf.json @@ -33,6 +33,7 @@ }, "bundle": { "active": true, + "createUpdaterArtifacts": true, "targets": "all", "category": "Utility", "copyright": "Bryan Roscoe",