From acc56379ba9dbfaf724c70edf99008a2e35d6938 Mon Sep 17 00:00:00 2001 From: vitaliytv Date: Sun, 26 Jul 2026 14:19:27 +0300 Subject: [PATCH] feat(rust): adopt root Cargo workspace --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fdc24fb..9ac55a2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -99,8 +99,8 @@ jobs: run: | cargo build --release --bin journal --target aarch64-apple-darwin --manifest-path app/src-tauri/Cargo.toml cargo build --release --bin journal --target x86_64-apple-darwin --manifest-path app/src-tauri/Cargo.toml - mkdir -p app/src-tauri/target/universal-apple-darwin/release - lipo -create app/src-tauri/target/aarch64-apple-darwin/release/journal app/src-tauri/target/x86_64-apple-darwin/release/journal -output app/src-tauri/target/universal-apple-darwin/release/journal + mkdir -p target/universal-apple-darwin/release + lipo -create target/aarch64-apple-darwin/release/journal target/x86_64-apple-darwin/release/journal -output target/universal-apple-darwin/release/journal - name: Build and upload DMG uses: tauri-apps/tauri-action@84b9d35b5fc46c1e45415bdb6144030364f7ebc5 # v0.6.2