Skip to content

Commit

Permalink
Update with package_name and even better debug
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewGable committed Nov 15, 2024
1 parent 3c01987 commit 2bd7743
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/androidBump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
schedule:
# Runs at midnight every day
- cron: '0 0 * * *'
push:
branches:
- andrew-android-bump-fixes-2

jobs:
android_bump:
Expand Down
7 changes: 6 additions & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,11 @@ platform :android do

desc "Submit HybridApp to 100% rollout on Google Play"
lane :complete_hybrid_rollout do
productionVersionCode = google_play_track_version_codes(track: 'production')
productionVersionCode = google_play_track_version_codes(
track: 'production',
package_name: "org.me.mobiexpensifyg",
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 All @@ -285,6 +289,7 @@ platform :android do
lane :update_hybrid_rollout do |options|
productionVersionCode = google_play_track_version_codes(
track: 'production',
package_name: "org.me.mobiexpensifyg",
json_key: './android/app/android-fastlane-json-key.json',
)
upload_to_play_store(
Expand Down

0 comments on commit 2bd7743

Please sign in to comment.