mirror of
https://github.com/actions/cache.git
synced 2026-03-01 08:11:03 +08:00
Compare commits
4 Commits
28bfb1712c
...
90f179328c
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
90f179328c | ||
|
|
5656298164 | ||
|
|
4e380d19e1 | ||
|
|
42e6e83ca6 |
36
examples.md
36
examples.md
@ -41,6 +41,9 @@
|
|||||||
- [Swift - Swift Package Manager](#swift---swift-package-manager)
|
- [Swift - Swift Package Manager](#swift---swift-package-manager)
|
||||||
- [Swift - Mint](#swift---mint)
|
- [Swift - Mint](#swift---mint)
|
||||||
- [* - Bazel](#---bazel)
|
- [* - Bazel](#---bazel)
|
||||||
|
- [Common use cases](#common-use-cases)
|
||||||
|
- [Restore-only caches](#restore-only-caches)
|
||||||
|
- [Automatically detect cached paths](#automatically-detect-cached-paths)
|
||||||
|
|
||||||
## Bun
|
## Bun
|
||||||
|
|
||||||
@ -49,7 +52,7 @@
|
|||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
~/.bun/install/cache
|
~/.bun/install/cache
|
||||||
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lockb') }}
|
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }}
|
||||||
```
|
```
|
||||||
|
|
||||||
### Windows
|
### Windows
|
||||||
@ -59,7 +62,7 @@
|
|||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
~\.bun
|
~\.bun
|
||||||
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lockb') }}
|
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }}
|
||||||
```
|
```
|
||||||
|
|
||||||
## C# - NuGet
|
## C# - NuGet
|
||||||
@ -712,3 +715,32 @@ steps:
|
|||||||
${{ runner.os }}-bazel-
|
${{ runner.os }}-bazel-
|
||||||
- run: bazelisk test //...
|
- run: bazelisk test //...
|
||||||
```
|
```
|
||||||
|
## Common use cases
|
||||||
|
|
||||||
|
### Restore-only caches
|
||||||
|
If there are several builds on the same repo it might make sense to create a cache in one build and use it in the
|
||||||
|
others. The action [actions/cache/restore](https://github.com/actions/cache/blob/main/restore/README.md#only-restore-cache)
|
||||||
|
should be used in this case.
|
||||||
|
|
||||||
|
### Automatically detect cached paths
|
||||||
|
[Defining outputs for jobs](https://docs.github.com/en/actions/using-jobs/defining-outputs-for-jobs) can be used to
|
||||||
|
automatically detect paths to cache and use them to configure `actions/cache` action.
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
- name: Get Go cached paths
|
||||||
|
id: find-cached-paths
|
||||||
|
run: |
|
||||||
|
echo "cache=$(go env GOCACHE)" >> $GITHUB_ENV
|
||||||
|
echo "modcache=$(go env GOMODCACHE)" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
- name: Set up cache
|
||||||
|
uses: actions/cache@v3
|
||||||
|
needs: find-cached-paths
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
${{ env.cache }}
|
||||||
|
${{ env.modcache }}
|
||||||
|
key: setup-go-${{ runner.os }}-go-${{ hashFiles('go.sum go.mod') }}
|
||||||
|
restore-keys: |
|
||||||
|
setup-go-${{ runner.os }}-go-
|
||||||
|
```
|
||||||
Loading…
Reference in New Issue
Block a user