Skip to content

Commit

Permalink
Add Cocoapods example (apache#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
koogawa authored and joshmgross committed Oct 31, 2019
1 parent 7611296 commit 83bb08d
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,16 @@ jobs:
key: ${{ runner.os }}-maven
```

### Swift, Objective-C - CocoaPods
```yaml
- uses: actions/cache@preview
with:
path: Pods
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }}
restore-keys: |
${{ runner.os }}-pods-
```

### Ruby - Gem
```yaml
- uses: actions/cache@preview
Expand All @@ -110,6 +120,7 @@ jobs:
key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gem-
```

## Cache Limits
Expand Down

0 comments on commit 83bb08d

Please sign in to comment.