Skip to content

Commit

Permalink
chore: wip
Browse files Browse the repository at this point in the history
  • Loading branch information
LichKing-2234 committed Nov 9, 2023
1 parent 16af6bf commit 34f85d9
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 10 deletions.
7 changes: 7 additions & 0 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ runs:
with:
node-version-file: .nvmrc

- name: Setup cocoapods
if: ${{ runner.os == 'macOS' }}
run: |
gem install cocoapods -v 1.13.0
gem install activesupport -v 7.0.8
shell: bash

- name: Cache dependencies
id: yarn-cache
uses: actions/cache@v3
Expand Down
5 changes: 0 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,6 @@ jobs:
- name: Setup
uses: ./.github/actions/setup

- name: Setup cocoapods
run: |
gem install cocoapods -v 1.13.0
gem install activesupport -v 7.0.8
- name: Cache turborepo for iOS
uses: actions/cache@v3
with:
Expand Down
5 changes: 0 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,11 +159,6 @@ jobs:
- name: Setup
uses: ./.github/actions/setup

- name: Setup cocoapods
run: |
gem install cocoapods -v 1.13.0
gem install activesupport -v 7.0.8
- name: Cache turborepo for iOS
uses: actions/cache@v3
with:
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/dep.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,16 @@ jobs:
- name: Setup
uses: ./.github/actions/setup

- name: Cache cocoapods
id: cocoapods-cache
uses: actions/cache@v3
with:
path: |
**/ios/Pods
key: ${{ runner.os }}-cocoapods-0-${{ hashFiles('example/ios/Podfile.lock') }}
restore-keys: |
${{ runner.os }}-cocoapods-0-
- name: Update Podfile.lock
run: |
pod update
Expand Down

0 comments on commit 34f85d9

Please sign in to comment.