mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-11-22 13:05:31 +03:00
Merge pull request #968 from nextcloud/fastlane
Add basic support for Fastlane
This commit is contained in:
commit
16546847d4
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