Fix pod caching issue
This commit is contained in:
parent
7886cc8423
commit
0fd520452e
1 changed files with 5 additions and 3 deletions
8
.github/workflows/testing.yml
vendored
8
.github/workflows/testing.yml
vendored
|
|
@ -14,9 +14,9 @@ jobs:
|
|||
- uses: actions/cache@v2
|
||||
with:
|
||||
path: vendor/bundle
|
||||
key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile.lock') }}
|
||||
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-gem-
|
||||
${{ runner.os }}-gems-
|
||||
- uses: actions/cache@v2
|
||||
id: carthage-cache
|
||||
with:
|
||||
|
|
@ -38,7 +38,9 @@ jobs:
|
|||
restore-keys: |
|
||||
${{ runner.os }}-gopenpgp-
|
||||
- name: Bundle Install
|
||||
run: bundle install --deployment
|
||||
run: |
|
||||
bundle config path vendor/bundle
|
||||
bundle install --jobs 4 --retry 3
|
||||
- name: Cocoapods
|
||||
run: bundle exec pod install
|
||||
- name: Carthage
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue