From dcbced25c8c3e49f5251189005129731e3ed8f07 Mon Sep 17 00:00:00 2001 From: t8y2 <1156263951@qq.com> Date: Fri, 1 May 2026 15:09:19 +0800 Subject: [PATCH] perf: share rust cache between CI and release builds --- .github/workflows/ci.yml | 1 + .github/workflows/release.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a1ad82982..bcd49c750 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,6 +35,7 @@ jobs: uses: swatinem/rust-cache@v2 with: workspaces: src-tauri + shared-key: "release" - name: Install system dependencies (Linux) run: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d9f200b78..2a451d32e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -49,6 +49,7 @@ jobs: uses: swatinem/rust-cache@v2 with: workspaces: src-tauri + shared-key: "release" - name: Install system dependencies (Linux) if: matrix.platform == 'ubuntu-latest'