Skip to content

Commit d77299d

Browse files
committed
ci: remove manual pod install step
1 parent ffca33d commit d77299d

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/build-templates.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,11 +247,12 @@ jobs:
247247
${{ runner.os }}-library-cocoapods-
248248
249249
- name: Install cocoapods
250-
if: env.ios_build == 1 && env.turbo_cache_hit_ios != 1 && steps.library-cocoapods-cache.outputs.cache-hit != 'true'
250+
if: env.ios_build == 1 && env.turbo_cache_hit_ios != 1
251251
working-directory: ${{ env.work_dir }}
252252
run: |
253253
cd example
254254
bundle install
255+
bundle exec pod repo update --verbose
255256
bundle exec pod install --project-directory=ios
256257
257258
- name: Cache cocoapods

packages/create-react-native-library/templates/native-common/{%- project.name %}.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Pod::Spec.new do |s|
2424
2525
<% if (project.moduleConfig === "nitro-modules") { -%>
2626
s.source_files = [
27-
"ios/**/*.{swift}",=
27+
"ios/**/*.{swift}",
2828
"ios/**/*.{m,mm}",
2929
"cpp/**/*.{hpp,cpp}",
3030
]

0 commit comments

Comments
 (0)