Skip to content

Commit

Permalink
Merge pull request #52644 from Expensify/andrew-android-bump-fixes
Browse files Browse the repository at this point in the history
[No QA]Allow Android Rollout Bumper to be run manually and add key to fix error
  • Loading branch information
luacmartins authored Nov 15, 2024
2 parents 5e49de6 + 3c01987 commit 0c84ea2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/androidBump.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Android Rollout Bumper

on:
workflow_dispatch:
schedule:
# Runs at midnight every day
- cron: '0 0 * * *'
Expand Down
5 changes: 4 additions & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 0c84ea2

Please sign in to comment.