Skip to content

Commit

Permalink
Add Carthage example (apache#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
ry-itto authored and joshmgross committed Oct 31, 2019
1 parent 83bb08d commit 6e37fd1
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion README.md
Expand Up @@ -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
Expand All @@ -120,7 +130,6 @@ jobs:
key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gem-
```

## Cache Limits
Expand Down

0 comments on commit 6e37fd1

Please sign in to comment.