mirror of
https://github.com/soywod/himalaya.git
synced 2024-11-22 02:50: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
|
extraPullNames: nix-community
|
||||||
- name: Restore Cargo home
|
- name: Restore Cargo home
|
||||||
uses: actions/cache/restore@v4
|
uses: actions/cache/restore@v4
|
||||||
id: cache-cargo-home
|
id: cache-cargo-restore
|
||||||
with:
|
with:
|
||||||
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
||||||
path: |
|
path: |
|
||||||
|
@ -59,9 +59,9 @@ jobs:
|
||||||
result/himalaya.zip
|
result/himalaya.zip
|
||||||
- name: Save Cargo home
|
- name: Save Cargo home
|
||||||
uses: actions/cache/save@v4
|
uses: actions/cache/save@v4
|
||||||
id: cache-cargo-home
|
id: cache-cargo-save
|
||||||
with:
|
with:
|
||||||
key: ${{ steps.cache-cargo-home.outputs.cache-primary-key }}
|
key: ${{ steps.cache-cargo-restore.outputs.cache-primary-key }}
|
||||||
path: |
|
path: |
|
||||||
~/.cargo/bin/
|
~/.cargo/bin/
|
||||||
~/.cargo/registry/index/
|
~/.cargo/registry/index/
|
||||||
|
|
Loading…
Reference in a new issue