File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed
Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -173,8 +173,17 @@ jobs:
173173 name : Install Maestro
174174 command : npm run maestro:install
175175 - run :
176- name : Set Ruby Version
177- command : rbenv global 3.3.5 && rbenv rehash
176+ name : Set Ruby Version
177+ command : |
178+ # Check available Ruby versions
179+ rbenv versions
180+ # Try to install Ruby 3.3.5 if not available
181+ rbenv install 3.3.5 || true
182+ # Set global Ruby version
183+ rbenv global 3.3.5
184+ rbenv rehash
185+ # Verify Ruby version
186+ ruby --version
178187
179188 - restore_cache :
180189 keys :
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ react {
4242 // bundleAssetName = "MyApplication.android.bundle"
4343 //
4444 // The entry file for bundle generation. Default is 'index.android.js' or 'index.js'
45- entryFile = file(" index.tsx" )
45+ entryFile = file(" ../../ index.tsx" )
4646 //
4747 // A list of extra flags to pass to the 'bundle' commands.
4848 // See https://github.com/react-native-community/cli/blob/main/docs/commands.md#bundle
You can’t perform that action at this time.
0 commit comments