我的CircleCI帐户中存储了一个名为FIREBASE_TOKEN
的环境变量。我想在我的快速文件中访问它,但是我不确定如何做到这一点。我最初的猜测是使用ENV['FIREBASE_TOKEN']
。这样行吗?
例如
desc "Distribute app"
lane :distribute do
build_ios_app(...)
firebase_app_distribution(
app: "appid",
testers: "tester1@company.com, tester2@company.com",
release_notes: "notes",
firebase_cli_token: ENV['FIREBASE_TOKEN']
)
end