Skip to content

Commit bbb5bd2

Browse files
authored
Merge pull request #2492 from bonomat/feat/open-testing-android-fastlane
chore: upload android automatically to public testing
2 parents 470096a + 30a9364 commit bbb5bd2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -641,7 +641,7 @@ upload-app-bundle:
641641

642642
if [ "$NETWORK" = "regtest" ]; then
643643
echo "Uploading for regtest"
644-
ANDROID_PACKAGE_NAME='finance.get10101.app.demo' FASTLANE_ANDROID_APP_SCHEME='demo' bundle exec fastlane alpha
644+
ANDROID_PACKAGE_NAME='finance.get10101.app.demo' FASTLANE_ANDROID_APP_SCHEME='demo' bundle exec fastlane beta
645645
else
646646
echo "Uploading for mainnet"
647647
ANDROID_PACKAGE_NAME='finance.get10101.app' FASTLANE_ANDROID_APP_SCHEME='full' bundle exec fastlane internal

mobile/android/fastlane/Fastfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ platform :android do
1616
)
1717
end
1818

19-
desc "Submit a new build to google play store for our alpha testers"
20-
lane :alpha do
19+
desc "Submit a new build to google play store for our beta testers"
20+
lane :beta do
2121
upload_to_play_store(
22-
track: 'alpha',
22+
track: 'beta',
2323
aab: "../build/app/outputs/bundle/#{APP_SCHEME}Release/app-#{APP_SCHEME}-release.aab",
2424
skip_upload_metadata: true,
2525
skip_upload_images: true,

0 commit comments

Comments
 (0)