From d59adc7ce76738aa18d36e70fede1540cf823033 Mon Sep 17 00:00:00 2001 From: kwaroran Date: Mon, 12 Jun 2023 12:34:01 +0900 Subject: [PATCH] [chore] remove rust cache --- .github/workflows/github-actions-builder.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.github/workflows/github-actions-builder.yml b/.github/workflows/github-actions-builder.yml index 89e54ae3..4f5ac4df 100644 --- a/.github/workflows/github-actions-builder.yml +++ b/.github/workflows/github-actions-builder.yml @@ -50,13 +50,6 @@ jobs: key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} restore-keys: | ${{ runner.os }}-pnpm-store- - - uses: actions/cache@v3 - name: Setup rust cache - with: - path: src-tauri/target/ - key: ${{ runner.os }}-rust-cache - restore-keys: | - ${{ runner.os }}-rust-cache - name: install frontend dependencies run: pnpm install --no-frozen-lockfile # change this to npm or pnpm depending on which one you use - if: matrix.platform == 'ubuntu-latest'