mirror of
https://github.com/actions/cache.git
synced 2026-07-08 19:03:52 +08:00
Compare commits
8 Commits
phantsure/
...
012e78ba5e
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
012e78ba5e | ||
|
|
365406cb70 | ||
|
|
bfedfbb7bb | ||
|
|
d6217569d5 | ||
|
|
84e54000da | ||
|
|
4723a57e26 | ||
|
|
35f35f44e8 | ||
|
|
ca1c035094 |
3
.github/workflows/go.nodex-json.json.QrK.s
vendored
Normal file
3
.github/workflows/go.nodex-json.json.QrK.s
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
_-$./"="
|
||||
"action.scope.go"
|
||||
"="go
|
||||
@@ -121,6 +121,7 @@ See [Examples](examples.md) for a list of `actions/cache` implementations for us
|
||||
- [Swift, Objective-C - Carthage](./examples.md#swift-objective-c---carthage)
|
||||
- [Swift, Objective-C - CocoaPods](./examples.md#swift-objective-c---cocoapods)
|
||||
- [Swift - Swift Package Manager](./examples.md#swift---swift-package-manager)
|
||||
- [Swift - Mint](./examples.md#swift---mint)
|
||||
|
||||
## Creating a cache key
|
||||
|
||||
|
||||
16
examples.md
16
examples.md
@@ -38,6 +38,7 @@
|
||||
- [Swift, Objective-C - Carthage](#swift-objective-c---carthage)
|
||||
- [Swift, Objective-C - CocoaPods](#swift-objective-c---cocoapods)
|
||||
- [Swift - Swift Package Manager](#swift---swift-package-manager)
|
||||
- [Swift - Mint](#swift---mint)
|
||||
|
||||
## C# - NuGet
|
||||
|
||||
@@ -641,3 +642,18 @@ whenever possible:
|
||||
restore-keys: |
|
||||
${{ runner.os }}-spm-
|
||||
```
|
||||
|
||||
## Swift - Mint
|
||||
|
||||
```yaml
|
||||
env:
|
||||
MINT_PATH: .mint/lib
|
||||
MINT_LINK_PATH: .mint/bin
|
||||
steps:
|
||||
- uses: actions/cache@v3
|
||||
with:
|
||||
path: .mint
|
||||
key: ${{ runner.os }}-mint-${{ hashFiles('**/Mintfile') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-mint-
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user