Skip to content

Commit

Permalink
caching multiple paths is finicky
Browse files Browse the repository at this point in the history
  • Loading branch information
schell committed Dec 7, 2024
1 parent 2a5a01c commit a3ee4a2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/cache@v4
with:
path:
- ~/.cache/rust-gpu
- ~/.cargo/bin
path: |
~/.cache/rust-gpu
~/.cargo/bin
key: 0-${{ runner.os }}
- uses: moonrepo/setup-rust@v1
- run: rustup default stable
Expand All @@ -49,9 +49,9 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/cache@v4
with:
path:
- ~/.cache/rust-gpu
- ~/.cargo/bin
path: |
~/.cache/rust-gpu
~/.cargo/bin
key: 0-${{ runner.os }}
- uses: moonrepo/setup-rust@v1
- run: rm -rf crates/renderling/src/linkage/* crates/renderling/shaders
Expand Down

0 comments on commit a3ee4a2

Please sign in to comment.