mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-11-21 12:35:30 +03:00
Add basic support for Fastlane
Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
This commit is contained in:
parent
4866f45495
commit
022419ad98
2 changed files with 20 additions and 0 deletions
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 a new issue