From cd3ec3ab8d776964eb1d126ca5c6b4b7b441d707 Mon Sep 17 00:00:00 2001 From: Viren Mohindra Date: Thu, 19 Mar 2026 03:16:34 -0400 Subject: [PATCH] fix(ci): use sign-binaries: true in main-build.yml (#1094) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit sign-binaries: false passes empty strings for TAURI_SIGNING_PRIVATE_KEY and APPLE_CERTIFICATE, but Tauri treats a set-but-empty env var as a signing attempt, causing all builds to fail. Use sign-binaries: true to match pr-test-build.yml — secrets are already configured in the repo. --- .github/workflows/main-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main-build.yml b/.github/workflows/main-build.yml index d107561..fcbfaf0 100644 --- a/.github/workflows/main-build.yml +++ b/.github/workflows/main-build.yml @@ -48,5 +48,5 @@ jobs: target: ${{ matrix.target }} build-args: ${{ matrix.args }} upload-artifacts: true - sign-binaries: false + sign-binaries: true secrets: inherit