more automation

This commit is contained in:
2024-09-10 10:12:53 +02:00
parent 0ae20e4995
commit b11f082803
4 changed files with 456 additions and 5 deletions

View File

@@ -32,14 +32,22 @@ platform :android do
track: 'alpha',
skip_upload_apk: true,
skip_upload_changelogs: true,
)
end
desc "Deploy a new version to the Google Play"
desc "Deploy a new release to the Google Play"
lane :deploy do
gradle(task: "clean assembleRelease")
upload_to_play_store
gradle(
task: "clean assembleRelease",
properties: {
# loaded from environment
android.injected.version.name: ENV["VERSION_NAME"],
}
)
upload_to_play_store(
track: "production",
skip_upload_apk: true,
skip_upload_changelogs: true,
)
end
end