Skip to content

Commit a3ee4a2

Browse files
committed
caching multiple paths is finicky
1 parent 2a5a01c commit a3ee4a2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/push.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ jobs:
2525
- uses: actions/checkout@v2
2626
- uses: actions/cache@v4
2727
with:
28-
path:
29-
- ~/.cache/rust-gpu
30-
- ~/.cargo/bin
28+
path: |
29+
~/.cache/rust-gpu
30+
~/.cargo/bin
3131
key: 0-${{ runner.os }}
3232
- uses: moonrepo/setup-rust@v1
3333
- run: rustup default stable
@@ -49,9 +49,9 @@ jobs:
4949
- uses: actions/checkout@v2
5050
- uses: actions/cache@v4
5151
with:
52-
path:
53-
- ~/.cache/rust-gpu
54-
- ~/.cargo/bin
52+
path: |
53+
~/.cache/rust-gpu
54+
~/.cargo/bin
5555
key: 0-${{ runner.os }}
5656
- uses: moonrepo/setup-rust@v1
5757
- run: rm -rf crates/renderling/src/linkage/* crates/renderling/shaders

0 commit comments

Comments
 (0)