From 83bb08ded34bd5f015d889bc7baf8ab4f047400b Mon Sep 17 00:00:00 2001 From: Kosuke Ogawa Date: Thu, 31 Oct 2019 23:47:43 +0900 Subject: [PATCH] Add Cocoapods example (#5) --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 32546d2..4d23fa2 100644 --- a/README.md +++ b/README.md @@ -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 @@ -110,6 +120,7 @@ jobs: key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile.lock') }} restore-keys: | ${{ runner.os }}-gem- + ``` ## Cache Limits