From 6e37fd16eae01ffc6bc639527f3b288b7ef87b56 Mon Sep 17 00:00:00 2001 From: Ryoya Ito <30540303+ry-itto@users.noreply.github.com> Date: Thu, 31 Oct 2019 23:52:32 +0900 Subject: [PATCH] Add Carthage example (#10) --- README.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4d23fa2a0975..d55fb747546f 100644 --- a/README.md +++ b/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