Skip to content

Commit f7d3843

Browse files
committed
Some more changes
1 parent d98a42a commit f7d3843

File tree

1 file changed

+2
-21
lines changed

1 file changed

+2
-21
lines changed

.github/workflows/build-ios.yml

Lines changed: 2 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
working-directory: [example]
3030
fail-fast: false
3131
concurrency:
32-
group: build-ios-${{ matrix.working-directory }}-${{ github.ref }}
32+
group: ios-${{ matrix.working-directory }}-${{ github.ref }}
3333
cancel-in-progress: true
3434
steps:
3535
- name: Check out Git repository
@@ -43,29 +43,10 @@ jobs:
4343
- name: Install node_modules
4444
run: yarn install --immutable
4545

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-
5546
- name: Install Pods
5647
working-directory: ${{ matrix.working-directory }}/ios
5748
run: bundler install && bundler exec pod install
5849

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-
6950
- name: Build app
7051
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

0 commit comments

Comments
 (0)