From a6723c8a37d10d063150bd9e87624f6c41d5fadc Mon Sep 17 00:00:00 2001 From: Brord van Wierst Date: Tue, 24 Dec 2024 13:49:41 +0100 Subject: [PATCH] temp disable main workflows to verify4 --- .github/workflows/manual.yml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/.github/workflows/manual.yml b/.github/workflows/manual.yml index 34b4a2b49..32b816a90 100644 --- a/.github/workflows/manual.yml +++ b/.github/workflows/manual.yml @@ -55,4 +55,18 @@ jobs: PLAY_STORE_CONFIG_JSON: ${{ secrets.PLAY_STORE_CONFIG_JSON }} run: ./scripts/prepare-android-release.sh - name: Build Android Release - run: flutter build appbundle --target-platform android-arm,android-arm64,android-x64 \ No newline at end of file + run: flutter build appbundle --target-platform android-arm,android-arm64,android-x64 + - name: Deploy Android Release + run: | + mkdir -p build/android + cp build/app/outputs/bundle/release/app-release.aab build/android/ + cd android + 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 .. \ No newline at end of file