[CHORE] Add to internal lane instead of alpha (#2400)
This commit is contained in:
parent
a96be1466c
commit
eda010f551
|
@ -211,7 +211,7 @@ jobs:
|
|||
- android/fastlane/report.xml
|
||||
- android/app/build/outputs
|
||||
|
||||
android-google-play-alpha:
|
||||
android-google-play-beta:
|
||||
<<: *defaults
|
||||
docker:
|
||||
- image: circleci/android:api-28-node
|
||||
|
@ -231,7 +231,7 @@ jobs:
|
|||
|
||||
- run:
|
||||
name: Fastlane Play Store Upload
|
||||
command: bundle exec fastlane android alpha
|
||||
command: bundle exec fastlane android beta
|
||||
working_directory: android
|
||||
|
||||
# iOS builds
|
||||
|
@ -340,10 +340,10 @@ workflows:
|
|||
- android-build:
|
||||
requires:
|
||||
- lint-testunit
|
||||
- android-hold-google-play-alpha:
|
||||
- android-hold-google-play-beta:
|
||||
type: approval
|
||||
requires:
|
||||
- android-build
|
||||
- android-google-play-alpha:
|
||||
- android-google-play-beta:
|
||||
requires:
|
||||
- android-hold-google-play-alpha
|
||||
- android-hold-google-play-beta
|
||||
|
|
|
@ -26,10 +26,10 @@ platform :android do
|
|||
gradle(task: "bundleRelease")
|
||||
end
|
||||
|
||||
desc "Upload App to Play store"
|
||||
lane :alpha do
|
||||
desc "Upload App to Play Store Internal"
|
||||
lane :beta do
|
||||
upload_to_play_store(
|
||||
track: 'alpha',
|
||||
track: 'internal',
|
||||
aab: 'android/app/build/outputs/bundle/release/app-release.aab'
|
||||
)
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue