[CHORE] Add to internal lane instead of alpha (#2400)

This commit is contained in:
Diego Mello 2020-08-17 10:27:56 -03:00 committed by GitHub
parent a96be1466c
commit eda010f551
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 8 deletions

View File

@ -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

View File

@ -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