Merge pull request #968 from nextcloud/fastlane

Add basic support for Fastlane
This commit is contained in:
Marcel Hibbe 2021-01-28 07:34:45 +01:00 committed by GitHub
commit 16546847d4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 0 deletions

2
fastlane/Appfile Normal file
View file

@ -0,0 +1,2 @@
json_key_file "~/.gradle/fastlane.json"
package_name "com.nextcloud.talk2"

18
fastlane/Fastfile Normal file
View file

@ -0,0 +1,18 @@
# This is the minimum version number required.
fastlane_version "2.58.0"
skip_docs
## public lanes
desc "Upload Alpha version to play store"
lane :uploadAlphaToPlayStore do |options|
upload_to_play_store(
skip_upload_images: true,
skip_upload_aab: true,
skip_upload_changelogs: true,
skip_upload_metadata: true,
track: 'alpha',
apk: "~/apks-talk/android-talk-" + options[:version] + ".apk",
)
end