Skip to content

Commit

Permalink
fix: fetch current version_code for metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
Syn-McJ committed Aug 26, 2023
1 parent f3c7b97 commit 21d34bf
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,14 @@ platform :android do
rollout='0.2'
end

versions = google_play_track_version_codes(track: "internal")
version_code = versions[0]

supply(
track: 'internal',
track_promote_to: "production",
rollout: rollout
rollout: rollout,
version_code: version_code
)
end

Expand Down

0 comments on commit 21d34bf

Please sign in to comment.