Skip to content

Commit c15dbef

Browse files
committed
fix
1 parent b8e8bfd commit c15dbef

File tree

3 files changed

+5
-19
lines changed

3 files changed

+5
-19
lines changed

.github/workflows/setup/action.yml

Lines changed: 2 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -18,31 +18,18 @@ runs:
1818

1919
- uses: actions/cache@v3
2020
with:
21-
path: Pods
21+
path: ios/Pods
2222
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }}
2323
restore-keys: |
2424
${{ runner.os }}-pods-
2525
2626
- uses: actions/cache@v3
2727
with:
2828
path: build/ccache_dir
29-
key: ${{ runner.os }}-${{inputs.platform}}-ccache-${{ hashFiles('**/Podfile', 'frontend/yarn.lock') }}
29+
key: ${{ runner.os }}-${{inputs.platform}}-ccache-${{ hashFiles('**/Podfile', 'package-lock.json') }}
3030
restore-keys: |
3131
${{ runner.os }}-${{inputs.platform}}-ccache-
3232
33-
- name: Get yarn cache directory path
34-
id: yarn-cache-dir-path
35-
run: echo "::set-output name=dir::$(yarn cache dir)"
36-
shell: bash
37-
38-
- uses: actions/cache@v3
39-
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
40-
with:
41-
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
42-
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
43-
restore-keys: |
44-
${{ runner.os }}-yarn-
45-
4633
- uses: maxim-lobanov/setup-xcode@v1
4734
with:
4835
xcode-version: latest-stable

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
brew-install:
2+
brew bundle install --no-lock --file Brewfile

ios/Makefile

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,9 @@ build-xcframework:
77
archive-platform:
88
scripts/build_single_platform.sh $(CONFIGURATION) $(PLATFORM) $(PLATFORM).tar.gz
99

10-
brew-install:
11-
brew bundle install --no-lock --file Brewfile
12-
1310
prepare:
1411
bundle install
15-
cd frontend && npm install
12+
cd .. && npm install
1613

1714
gen:
1815
xcodegen

0 commit comments

Comments
 (0)