From 8cb9d9b3039ab2d41aed28354139ae42aacda0a7 Mon Sep 17 00:00:00 2001 From: Yuriy Date: Thu, 29 Jan 2026 16:30:37 +0300 Subject: [PATCH] ci(release): add debug tauri config step, set projectPath to desktop --- .github/workflows/release.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3730e51..58b5283 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -28,17 +28,27 @@ jobs: uses: dtolnay/rust-toolchain@stable with: toolchain: stable - targets: aarch64-apple-darwin,x86_64-apple-darwin - name: Install UI deps run: cd desktop/ui && npm ci + - name: Debug tauri config + run: | + echo "PWD=$(pwd)" + ls -la + echo "---- desktop/src-tauri/tauri.conf.json ----" + sed -n '1,200p' desktop/src-tauri/tauri.conf.json + echo "beforeBuildCommand:" + grep -n "beforeBuildCommand" desktop/src-tauri/tauri.conf.json || true + echo "Find other tauri configs:" + find . -maxdepth 4 \( -name "tauri.conf.json" -o -name "tauri.config.*" \) || true + - name: Build Tauri (release) uses: tauri-apps/tauri-action@v0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }} with: - projectPath: desktop/src-tauri + projectPath: desktop includeUpdaterJson: true tagName: ${{ github.ref_name }}