Hello, I have followed the orb documentation for Flutter and I am running into numerous issues. Regardless of how I set the ruby version and gem install bundle. I always receive an exit code 127 at flutter/install_ios_gem
version: '2.1'
orbs:
macos: circleci/macos@2.5.2
flutter: circleci/flutter@2.0.0
commands:
add-dependencies-keys:
description: "Add required SSH keys"
steps:
- add_ssh_keys:
fingerprints:
- "FINGERPRINT"
- "FINGERPRINT"
jobs:
distribute_ios:
macos:
xcode: 15.4.0
resource_class: macos.m1.medium.gen1
steps:
- add-dependencies-keys
- checkout
- macos/install-rosetta
- macos/switch-ruby:
version: "3.2"
- run:
name: Gem install bundle
command: gem install bundle
- flutter/install_sdk_and_pub:
version: 3.22.0
- run:
name: Bundle install
command: bundle install
working_directory: ios
- flutter/install_ios_pod
- flutter/install_ios_gem
- run:
command: bundle exec fastlane certificates
working_directory: ios
- run:
command: bundle exec fastlane deploy_appstore_connect
working_directory: ios
workflows:
distribute:
jobs:
- distribute_ios:
filters:
branches:
only:
- develop