From b16c61addbe0e5eba958100237448b8cf64e25ba Mon Sep 17 00:00:00 2001 From: Abdenasser Date: Fri, 8 Nov 2024 17:33:53 +0100 Subject: [PATCH] fix build check --- .github/workflows/build-check.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-check.yml b/.github/workflows/build-check.yml index b31f188..750cc2d 100644 --- a/.github/workflows/build-check.yml +++ b/.github/workflows/build-check.yml @@ -62,11 +62,12 @@ jobs: - uses: Swatinem/rust-cache@v2 with: + workspaces: "./src-tauri -> target" shared-key: "build" - save-if: ${{ github.ref == 'refs/heads/main' }} - name: Install Dependencies run: npm ci - name: Build Application - run: npm run tauri build \ No newline at end of file + working-directory: ./src-tauri + run: cargo build --verbose \ No newline at end of file