我在 Azure Pipelines 中有一个 Gradle 任务,它为BrowserStack运行 Gradle 任务
此任务需要来自 local.properties 的 AccessKey 和 Password
和BrowserStackConfig.json
项目内部
browserStackConfig {
username = "*****"
accessKey = "*****"
configFilePath = "../browserstack/BrowserStackConfig.json"
}
当我在 azure 上运行此任务时,它会失败,因为 Azure Pipelines 上不存在 local.properties 和 BrowserStackConfig.json,如何将这些值传递给任务?