运行它
我正在尝试从苹果订阅中执行我的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