Skip to content

Commit

Permalink
Remove post install and update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Risch authored and Alex Risch committed May 8, 2024
1 parent 18779ef commit aa5943f
Show file tree
Hide file tree
Showing 11 changed files with 465 additions and 367 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ jobs:
fetch-depth: 0
- name: Select Xcode 15.1
run: ls /Applications/ && sudo xcode-select -switch /Applications/Xcode_15.1.app # Switch Xcode version
# Force cocoapods version 14.4
- uses: actions/setup-node@v3
- run: yarn
- name: Install Bundle
run: bundle install
- run: bundle exec yarn
- run: bundle exec pod install --project-directory=ios
- name: Build iOS App
run: yarn ios --no-packager --mode Release
6 changes: 4 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,7 @@ source 'https://rubygems.org'
# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
ruby ">= 2.7.4"

gem 'cocoapods', '~> 1.13'
gem 'activesupport', '>= 6.1.7.3', '< 7.1.0'
# Cocoapods 1.15 introduced a bug which break the build. We will remove the upper
# bound in the template on Cocoapods with next React Native release.
gem 'cocoapods', '>= 1.13', '< 1.15'
gem 'activesupport', '>= 6.1.7.5', '< 7.1.0'
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ PLATFORMS
ruby

DEPENDENCIES
activesupport (>= 6.1.7.3, < 7.1.0)
cocoapods (~> 1.13)
activesupport (>= 6.1.7.5, < 7.1.0)
cocoapods (>= 1.13, < 1.15)

RUBY VERSION
ruby 2.7.4p191
Expand Down
Loading

0 comments on commit aa5943f

Please sign in to comment.