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
|
- uses: actions/cache@v2
|
||||||
with:
|
with:
|
||||||
path: vendor/bundle
|
path: vendor/bundle
|
||||||
key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile.lock') }}
|
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-gem-
|
${{ runner.os }}-gems-
|
||||||
- uses: actions/cache@v2
|
- uses: actions/cache@v2
|
||||||
id: carthage-cache
|
id: carthage-cache
|
||||||
with:
|
with:
|
||||||
|
|
@ -38,7 +38,9 @@ jobs:
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-gopenpgp-
|
${{ runner.os }}-gopenpgp-
|
||||||
- name: Bundle Install
|
- name: Bundle Install
|
||||||
run: bundle install --deployment
|
run: |
|
||||||
|
bundle config path vendor/bundle
|
||||||
|
bundle install --jobs 4 --retry 3
|
||||||
- name: Cocoapods
|
- name: Cocoapods
|
||||||
run: bundle exec pod install
|
run: bundle exec pod install
|
||||||
- name: Carthage
|
- name: Carthage
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue