From 6b24b682391c68d8bf6be88202e05456cb749cc3 Mon Sep 17 00:00:00 2001 From: ggurdin <46800240+ggurdin@users.noreply.github.com> Date: Mon, 30 Dec 2024 09:51:24 -0500 Subject: [PATCH] fix: in Android internal testing release github action, don't promote release to production track (#1323) --- .github/workflows/manual.yml | 5 ----- android/fastlane/metadata/android/en-US/title.txt | 2 +- ios/fastlane/Fastfile | 2 +- 3 files changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/manual.yml b/.github/workflows/manual.yml index 6933f709b..3ced2468a 100644 --- a/.github/workflows/manual.yml +++ b/.github/workflows/manual.yml @@ -74,11 +74,6 @@ jobs: bundle install bundle update fastlane bundle exec fastlane deploy_internal_test - if [[ $GITHUB_REF_NAME == rc* ]]; then - bundle exec fastlane deploy_candidate - else - bundle exec fastlane deploy_release - fi cd .. deploy_ios_testflight: # stashed on old.yml diff --git a/android/fastlane/metadata/android/en-US/title.txt b/android/fastlane/metadata/android/en-US/title.txt index 49c120f7f..47f5345a7 100644 --- a/android/fastlane/metadata/android/en-US/title.txt +++ b/android/fastlane/metadata/android/en-US/title.txt @@ -1 +1 @@ -PangeaChat \ No newline at end of file +Pangea Chat \ No newline at end of file diff --git a/ios/fastlane/Fastfile b/ios/fastlane/Fastfile index 6686fa31c..1610b033d 100644 --- a/ios/fastlane/Fastfile +++ b/ios/fastlane/Fastfile @@ -41,7 +41,7 @@ platform :ios do ipa: "../build/ios/ipa/pangeachat.ipa", # Verify location distribute_external: true, groups: "App Store Connect Users", - changelog: "This is a release candidate for PangeaChat. Please test if the app is overall in a good condition before we push this to production.", + changelog: "This is a release candidate for Pangea Chat. Please test if the app is overall in a good condition before we push this to production.", ) end end