Ios 如何在circleci中添加插件fastlane插件appicon?

Ios 如何在circleci中添加插件fastlane插件appicon?,ios,plugins,testflight,circleci,fastlane,Ios,Plugins,Testflight,Circleci,Fastlane,我想安装fastlane插件fastlane插件appicon,所以我在circleci文件中添加了一个命令“-run:bundle exec fastlane add_plugin appicon”,但是有点错误,circleci代码和错误日志如下,谢谢 beta: macos: xcode: "10.1.0" working_directory: /Users/distiller/project environment: FL_OUTPUT_DIR: output F

我想安装fastlane插件fastlane插件appicon,所以我在circleci文件中添加了一个命令“-run:bundle exec fastlane add_plugin appicon”,但是有点错误,circleci代码和错误日志如下,谢谢

beta:
macos:
    xcode: "10.1.0"
    working_directory: /Users/distiller/project
environment:
  FL_OUTPUT_DIR: output
  FASTLANE_LANE: ios beta
shell: /bin/bash --login -o pipefail
steps:
  - checkout
  - run:
      name: pre-start simulator
      command: xcrun instruments -w "iPhone 8 (12.1)" || true
  - run:
      name: Set Ruby Version
      command:  echo "ruby-2.4" > ~/.ruby-version
  - run: brew update
  - run: brew cask install fastlane --no-quarantine
  - run: bundle update fastlane
  - run: bundle exec fastlane add_plugin appicon 
  - run: bundle install --path .bundle
  - run:
     name: Fastlane
     command: bundle exec fastlane $FASTLANE_LANE
  - store_artifacts:
      path: output
  - run:
      name: Transition Jira items for deployment
      command: .circleci/transition-jira-items.sh