From 3c01987c2f9c6b64b7b0b31669ed5b62bced5bce Mon Sep 17 00:00:00 2001 From: Andrew Gable Date: Fri, 15 Nov 2024 11:21:24 -0700 Subject: [PATCH] Allow Android Rollout Bumper to be run manually and add key to fix error --- .github/workflows/androidBump.yml | 1 + fastlane/Fastfile | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/androidBump.yml b/.github/workflows/androidBump.yml index 8a4f7d514208..b2276551852f 100644 --- a/.github/workflows/androidBump.yml +++ b/.github/workflows/androidBump.yml @@ -1,6 +1,7 @@ name: Android Rollout Bumper on: + workflow_dispatch: schedule: # Runs at midnight every day - cron: '0 0 * * *' diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 1c8b62cfb579..31738835b1dc 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -283,7 +283,10 @@ platform :android do desc "Update HybridApp rollout percentage on Google Play" lane :update_hybrid_rollout do |options| - productionVersionCode = google_play_track_version_codes(track: 'production') + productionVersionCode = google_play_track_version_codes( + track: 'production', + json_key: './android/app/android-fastlane-json-key.json', + ) upload_to_play_store( package_name: "org.me.mobiexpensifyg", json_key: './android/app/android-fastlane-json-key.json',