Unverified Commit a8e0f768 authored by xster's avatar xster Committed by GitHub

Don't push again on beta branch commit (#15001)

parent b9a7f1b9
...@@ -11,7 +11,7 @@ if [ "$SHARD" = "build_and_deploy_gallery" ]; then ...@@ -11,7 +11,7 @@ if [ "$SHARD" = "build_and_deploy_gallery" ]; then
export ANDROID_HOME=`pwd`/android-sdk export ANDROID_HOME=`pwd`/android-sdk
(cd examples/flutter_gallery; flutter build apk --release) (cd examples/flutter_gallery; flutter build apk --release)
echo "Android Flutter Gallery built" echo "Android Flutter Gallery built"
if [[ "$TRAVIS_PULL_REQUEST" == "false" && ("$TRAVIS_BRANCH" == "dev" || "$TRAVIS_BRANCH" == "beta") ]]; then if [[ "$TRAVIS_PULL_REQUEST" == "false" && "$TRAVIS_BRANCH" == "dev" ]]; then
echo "Deploying to Play Store..." echo "Deploying to Play Store..."
(cd examples/flutter_gallery/android; bundle install && bundle exec fastlane deploy_play_store) (cd examples/flutter_gallery/android; bundle install && bundle exec fastlane deploy_play_store)
else else
...@@ -21,7 +21,7 @@ if [ "$SHARD" = "build_and_deploy_gallery" ]; then ...@@ -21,7 +21,7 @@ if [ "$SHARD" = "build_and_deploy_gallery" ]; then
echo "Building Flutter Gallery for iOS..." echo "Building Flutter Gallery for iOS..."
(cd examples/flutter_gallery; flutter build ios --release --no-codesign) (cd examples/flutter_gallery; flutter build ios --release --no-codesign)
echo "iOS Flutter Gallery built" echo "iOS Flutter Gallery built"
if [[ "$TRAVIS_PULL_REQUEST" == "false" && ("$TRAVIS_BRANCH" == "dev" || "$TRAVIS_BRANCH" == "beta") ]]; then if [[ "$TRAVIS_PULL_REQUEST" == "false" && "$TRAVIS_BRANCH" == "dev" ]]; then
echo "Re-building with distribution profile and deploying to TestFlight..." echo "Re-building with distribution profile and deploying to TestFlight..."
(cd examples/flutter_gallery/ios; bundle install && bundle exec fastlane build_and_deploy_testflight) (cd examples/flutter_gallery/ios; bundle install && bundle exec fastlane build_and_deploy_testflight)
else else
......
...@@ -11,7 +11,7 @@ platform :android do ...@@ -11,7 +11,7 @@ platform :android do
lane :deploy_play_store do lane :deploy_play_store do
begin begin
upload_to_play_store( upload_to_play_store(
track: ENV['TRAVIS_BRANCH'] == 'beta' ? 'beta' : 'alpha', track: 'alpha',
apk: '../build/app/outputs/apk/release/app-release.apk', apk: '../build/app/outputs/apk/release/app-release.apk',
json_key_data: ENV['GOOGLE_DEVELOPER_SERVICE_ACCOUNT_ACTOR_FASTLANE'], json_key_data: ENV['GOOGLE_DEVELOPER_SERVICE_ACCOUNT_ACTOR_FASTLANE'],
skip_upload_screenshots: true, skip_upload_screenshots: true,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment