Skip to content

Commit

Permalink
Merge pull request #2492 from bonomat/feat/open-testing-android-fastlane
Browse files Browse the repository at this point in the history
chore: upload android automatically to public testing
  • Loading branch information
bonomat authored Apr 29, 2024
2 parents 470096a + 30a9364 commit bbb5bd2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,7 @@ upload-app-bundle:

if [ "$NETWORK" = "regtest" ]; then
echo "Uploading for regtest"
ANDROID_PACKAGE_NAME='finance.get10101.app.demo' FASTLANE_ANDROID_APP_SCHEME='demo' bundle exec fastlane alpha
ANDROID_PACKAGE_NAME='finance.get10101.app.demo' FASTLANE_ANDROID_APP_SCHEME='demo' bundle exec fastlane beta
else
echo "Uploading for mainnet"
ANDROID_PACKAGE_NAME='finance.get10101.app' FASTLANE_ANDROID_APP_SCHEME='full' bundle exec fastlane internal
Expand Down
6 changes: 3 additions & 3 deletions mobile/android/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ platform :android do
)
end

desc "Submit a new build to google play store for our alpha testers"
lane :alpha do
desc "Submit a new build to google play store for our beta testers"
lane :beta do
upload_to_play_store(
track: 'alpha',
track: 'beta',
aab: "../build/app/outputs/bundle/#{APP_SCHEME}Release/app-#{APP_SCHEME}-release.aab",
skip_upload_metadata: true,
skip_upload_images: true,
Expand Down

0 comments on commit bbb5bd2

Please sign in to comment.