File tree Expand file tree Collapse file tree 1 file changed +2
-21
lines changed Expand file tree Collapse file tree 1 file changed +2
-21
lines changed Original file line number Diff line number Diff line change 29
29
working-directory : [example]
30
30
fail-fast : false
31
31
concurrency :
32
- group : build- ios-${{ matrix.working-directory }}-${{ github.ref }}
32
+ group : ios-${{ matrix.working-directory }}-${{ github.ref }}
33
33
cancel-in-progress : true
34
34
steps :
35
35
- name : Check out Git repository
@@ -43,29 +43,10 @@ jobs:
43
43
- name : Install node_modules
44
44
run : yarn install --immutable
45
45
46
- - name : Restore Pods from cache
47
- uses : actions/cache@v4
48
- with :
49
- path : |
50
- ${{ matrix.working-directory }}/ios/Pods
51
- ~/Library/Caches/CocoaPods
52
- ~/.cocoapods
53
- key : ${{ runner.os }}-pods-${{ matrix.working-directory }}-${{ hashFiles(format('{0}/ios/Podfile.lock', matrix.working-directory)) }}
54
-
55
46
- name : Install Pods
56
47
working-directory : ${{ matrix.working-directory }}/ios
57
48
run : bundler install && bundler exec pod install
58
49
59
- - name : Restore build artifacts from cache
60
- uses : actions/cache@v4
61
- with :
62
- path : ~/Library/Developer/Xcode/DerivedData
63
- key : ${{ runner.os }}-ios-derived-data-${{ matrix.working-directory }}-${{ hashFiles(format('{0}/ios/Podfile.lock', matrix.working-directory)) }}
64
-
65
- - name : Configure NODE_BINARY
66
- working-directory : ${{ matrix.working-directory }}/ios
67
- run : echo export NODE_BINARY=$(command -v node) > .xcode.env
68
-
69
50
- name : Build app
70
51
working-directory : ${{ matrix.working-directory }}
71
- run : npx react-native@latest run-ios --no-packager --simulator="iPhone 14"
52
+ run : npx react-native run-ios --no-packager
You can’t perform that action at this time.
0 commit comments