Skip to content

Commit

Permalink
No more cargo cache
Browse files Browse the repository at this point in the history
  • Loading branch information
ThatXliner committed Mar 31, 2024
1 parent 463dc5c commit c758c8c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 23 deletions.
11 changes: 0 additions & 11 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
12 changes: 0 additions & 12 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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
Expand Down

0 comments on commit c758c8c

Please sign in to comment.