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