Updated on 2026-08-14
This commit is contained in:
parent
a9d6b3cea5
commit
5f6e5e328f
1 changed files with 8 additions and 1 deletions
|
|
@ -50,7 +50,14 @@ platform :android do
|
|||
|
||||
desc "Build external and release APKs"
|
||||
lane :build do |options|
|
||||
gradle(task: 'clean')
|
||||
gradle(task: 'clean') # TODO: remove after fully moving from old CI
|
||||
|
||||
launched_from_github_action = options[:launched_from_github_action] || false # TODO: remove after fully moving from old CI
|
||||
if launched_from_github_action
|
||||
FileUtils.cp("../ci_resources/build_ci_gradle.properties", "../gradle.properties")
|
||||
puts File.read("../gradle.properties")
|
||||
end
|
||||
|
||||
gradle(
|
||||
task: "bundle",
|
||||
build_type: "Release",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue