mirror of
https://github.com/soywod/himalaya.git
synced 2024-11-21 18:40:19 +00:00
fix test.yml workflow syntax issue 3
This commit is contained in:
parent
0cf6ba01ce
commit
6b2e018ea3
1 changed files with 3 additions and 3 deletions
6
.github/workflows/test.yml
vendored
6
.github/workflows/test.yml
vendored
|
@ -39,7 +39,7 @@ jobs:
|
|||
extraPullNames: nix-community
|
||||
- name: Restore Cargo home
|
||||
uses: actions/cache/restore@v4
|
||||
id: cache-cargo-home
|
||||
id: cache-cargo-restore
|
||||
with:
|
||||
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
||||
path: |
|
||||
|
@ -59,9 +59,9 @@ jobs:
|
|||
result/himalaya.zip
|
||||
- name: Save Cargo home
|
||||
uses: actions/cache/save@v4
|
||||
id: cache-cargo-home
|
||||
id: cache-cargo-save
|
||||
with:
|
||||
key: ${{ steps.cache-cargo-home.outputs.cache-primary-key }}
|
||||
key: ${{ steps.cache-cargo-restore.outputs.cache-primary-key }}
|
||||
path: |
|
||||
~/.cargo/bin/
|
||||
~/.cargo/registry/index/
|
||||
|
|
Loading…
Reference in a new issue