diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 73e671e..36521a1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -46,16 +46,5 @@ jobs: - name: Install dependencies run: pnpm install - - - name: Load cached Cargo - uses: actions/cache@v3 - with: - path: | - ~/.cargo/bin/ - ~/.cargo/registry/index/ - ~/.cargo/registry/cache/ - ~/.cargo/git/db/ - key: ${{ runner.os }}-cargo-${{ hashFiles('src-tauri/Cargo.lock') }} - restore-keys: ${{ runner.os }}-cargo- - name: Build the app run: pnpm tauri build diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f97ec7a..fd8a151 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,7 +31,6 @@ jobs: node-version: 21 cache: 'pnpm' cache-dependency-path: pnpm-lock.yaml - - name: Install dependencies for Tauri (ubuntu only) if: matrix.os == 'ubuntu-latest' run: | @@ -48,17 +47,6 @@ jobs: - name: Install dependencies run: pnpm install - - - name: Load cached Cargo - uses: actions/cache@v3 - with: - path: | - ~/.cargo/bin/ - ~/.cargo/registry/index/ - ~/.cargo/registry/cache/ - ~/.cargo/git/db/ - key: ${{ runner.os }}-cargo-${{ hashFiles('src-tauri/Cargo.lock') }} - restore-keys: ${{ runner.os }}-cargo- - name: Build the app run: pnpm tauri build - name: Upload artifacts