From cfc5c2c353fa2652822e092cba0b2bebafcf4089 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 15 Dec 2025 22:29:03 -0500 Subject: [PATCH] Debug: list files and try build from root --- .github/workflows/tauri-release.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tauri-release.yml b/.github/workflows/tauri-release.yml index d2f8c0d..2174509 100644 --- a/.github/workflows/tauri-release.yml +++ b/.github/workflows/tauri-release.yml @@ -37,11 +37,19 @@ jobs: # Build with Tauri CLI v2 - name: Install Tauri CLI - run: cargo install tauri-cli --version "^2.0.0" + run: | + curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash + cargo binstall tauri-cli --version "^2.0.0" -y + + - name: Debug - list files + run: | + echo "Root directory:" + ls -la + echo "src-tauri directory:" + ls -la src-tauri/ - name: Build Tauri app run: cargo tauri build - working-directory: src-tauri # Upload artifacts - name: Upload DMG