Skip to content

Commit

Permalink
Revert cache removal.
Browse files Browse the repository at this point in the history
  • Loading branch information
Zurcusa committed Jun 10, 2024
1 parent 2963391 commit 59d0a33
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/build_publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,24 @@ jobs:
default: true
override: true

- name: Cache Cargo registry
uses: actions/cache@v1
with:
path: ~/.cargo/registry
key: cargo-registry-${{ hashFiles('**/Cargo.lock') }}

- name: Cache Cargo bin
uses: actions/cache@v1
with:
path: ~/.cargo/bin
key: cargo-bin-${{ hashFiles('**/Cargo.lock') }}

- name: Cache Cargo build
uses: actions/cache@v1
with:
path: target
key: cargo-build-target-${{ hashFiles('**/Cargo.lock') }}

- name: Setup wasmer-jni artifacts dir
shell: bash
run: |
Expand Down

0 comments on commit 59d0a33

Please sign in to comment.