From 17956f409e3b1682f85b52e7754241255ceb2a94 Mon Sep 17 00:00:00 2001 From: HasanHammoudah Date: Wed, 14 Aug 2024 22:09:57 +0300 Subject: [PATCH] NEW UPDATE --- ...android_fastlane_firebase_app_distribution_workflow.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/android_fastlane_firebase_app_distribution_workflow.yml b/.github/workflows/android_fastlane_firebase_app_distribution_workflow.yml index 0694111..39be5ba 100644 --- a/.github/workflows/android_fastlane_firebase_app_distribution_workflow.yml +++ b/.github/workflows/android_fastlane_firebase_app_distribution_workflow.yml @@ -32,6 +32,7 @@ jobs: - name: Clean Flutter Build run: flutter clean + working-directory: ./ # Ensure this is the root of the project - name: Install Dependencies run: | @@ -51,14 +52,12 @@ jobs: env: FIREBASE_CLI_TOKEN: ${{ secrets.FIREBASE_CLI_TOKEN }} run: | - cd android - bundle exec fastlane android firebase_distribution --verbose --lane development + bundle exec fastlane android firebase_distribution --lane development working-directory: ./android - name: Distribute Release APK env: FIREBASE_CLI_TOKEN: ${{ secrets.FIREBASE_CLI_TOKEN }} run: | - cd android - bundle exec fastlane android firebase_distribution --verbose --lane release + bundle exec fastlane android firebase_distribution --lane release working-directory: ./android