Fastlane,可以将苹果作为插入车道的步骤

  • 本文关键字:插入 苹果 Fastlane fastlane
  • 更新时间 :
  • 英文 :


我正在尝试从苹果订阅中执行我的fastlane的一些步骤。我找不到有关此文件的任何文档。

我知道您可以从Fastlane运行Shell脚本,但我不确定您是否可以运行AppleScripts

实现此目的的一种方法是创建一个执行AppleScript的外壳脚本:

<root>/test.sh

#!/bin/bash
osascript <<EOD
    tell application "Google Chrome"
        activate
    end tell
EOD

<root>/fastlane/Fastfile

platform :ios do
    lane :test do
        sh('../test.sh')
    end
end

并使用bundle exec fastlane test

运行它

相关内容

  • 没有找到相关文章

最新更新