我目前正在使用.env
文件来获取FASTFILE中的环境变量,但是现在我正尝试使用GitLab CI / CD来使快速通道自动化。
由于无法将具有所有键的.env
文件推送到分支,因此必须在GitLab运行程序的环境变量中声明所有.env
或环境变量。
我想知道如何在我的fastfile中使用GitLab运行程序的环境变量。
lane :build_staging do |options|
environment_variable(set: { 'ENVFILE' => '.env.staging' }) // I want to use the GitLab environment variable
clean
gradle(task: options[:task], build_type: 'Staging', project_dir: 'android/')
end