From 2813f35eb1546695f501eab676a915a7b40287bf Mon Sep 17 00:00:00 2001 From: Mohamed Boudra Date: Tue, 10 Mar 2026 18:49:10 +0700 Subject: [PATCH] Relax Windows smoke app build failures --- .github/workflows/desktop-release.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/desktop-release.yml b/.github/workflows/desktop-release.yml index ea5d781a3..1a0dd8191 100644 --- a/.github/workflows/desktop-release.yml +++ b/.github/workflows/desktop-release.yml @@ -432,11 +432,15 @@ jobs: run: | set -euo pipefail app_path="packages/desktop/src-tauri/target/release/Paseo.exe" - npm run tauri --workspace=@getpaseo/desktop build - if [[ ! -f "$app_path" ]]; then - echo "Expected Windows smoke app at $app_path" - exit 1 + if npm run tauri --workspace=@getpaseo/desktop build; then + exit 0 fi + if [[ -f "$app_path" ]]; then + echo "Smoke app created at $app_path despite tauri build exiting non-zero; continuing." + exit 0 + fi + echo "Expected Windows smoke app at $app_path" + exit 1 - name: Smoke check managed runtime for Windows env: