我目前正在使用.env
文件来获取FASTFILE中的环境变量,但现在我正尝试使用GitLab CI / CD来使快速通道自动化。
由于具有所有键的.env
文件无法被推送到分支,因此我必须在GitLab运行程序的环境变量中声明所有.env
或环境变量。
我想知道如何在我的快速文件中使用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