mirror of
https://code.forgejo.org/actions/cache.git
synced 2024-11-04 17:52:53 +01:00
Add Carthage example (#10)
This commit is contained in:
parent
83bb08ded3
commit
6e37fd16ea
1 changed files with 10 additions and 1 deletions
11
README.md
11
README.md
|
@ -102,6 +102,16 @@ jobs:
|
|||
key: ${{ runner.os }}-maven
|
||||
```
|
||||
|
||||
### Swift, Objective-C - Carthage
|
||||
```yaml
|
||||
uses: actions/cache@preview
|
||||
with:
|
||||
path: Carthage
|
||||
key: ${{ runner.os }}-carthage-${{ hashFiles('**/Cartfile.resolved') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-carthage-
|
||||
```
|
||||
|
||||
### Swift, Objective-C - CocoaPods
|
||||
```yaml
|
||||
- uses: actions/cache@preview
|
||||
|
@ -120,7 +130,6 @@ jobs:
|
|||
key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile.lock') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-gem-
|
||||
|
||||
```
|
||||
|
||||
## Cache Limits
|
||||
|
|
Loading…
Reference in a new issue