Как добавить плагин fastlane-plugin-appicon в окружности? - PullRequest
0 голосов
/ 02 февраля 2019

Я хочу установить плагин fastlane fastlane-plugin-appicon, поэтому добавляю добавить команду "- run: bundle exec fastlane add_plugin appicon" в файл circleci, но что-то не так, код 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

enter image description here

enter image description here

...