mirror of
https://github.com/nextcloud/talk-android
synced 2025-01-18 13:16:15 +00:00
Add basic support for Fastlane
Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
This commit is contained in:
parent
4866f45495
commit
022419ad98
2
fastlane/Appfile
Normal file
2
fastlane/Appfile
Normal file
@ -0,0 +1,2 @@
|
||||
json_key_file "~/.gradle/fastlane.json"
|
||||
package_name "com.nextcloud.talk2"
|
18
fastlane/Fastfile
Normal file
18
fastlane/Fastfile
Normal 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
|
Loading…
Reference in New Issue
Block a user