I have strange error when executing CircleCI/flutter orb flutter/install_sdk_and_pub
command with Flutter version argument:
Error calling workflow: 'distribute'Error calling job: 'distribute'Error calling command: 'flutter/install_sdk_and_pub'Unexpected argument(s): version
Full yaml file:
orbs:
flutter: circleci/[email protected]
jobs:
distribute:
macos:
xcode: 12.8.1
steps:
- checkout
- flutter/install_sdk_and_pub:
version: 2.2.3
app-dir: ./app
- flutter/install_ios_pod:
app-dir: ./app
- flutter/install_ios_gem:
app-dir: ./app
- run:
command: bundle exec fastlane ios distribute
working_directory: ios
workflows:
distribute:
jobs:
- distribute```
Using
flutter_version
instead ofversion
fixed the error: