Skip to content

Commit

Permalink
fix track for release in fastlane
Browse files Browse the repository at this point in the history
  • Loading branch information
siper committed Aug 7, 2024
1 parent d417065 commit 7e05163
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,11 @@ platform :android do
"android.injected.signing.key.password" => ENV['KEYSTORE_KEY_PASSWORD'],
}
)
track = 'release'
track = 'production'
if ENV['VERSION_TAG'].include? 'alpha'
track = 'alpha'
elsif ENV['VERSION_TAG'].include? 'beta'
track = 'beta'
else
track = 'release'
end
upload_to_play_store(
track: track,
Expand Down

0 comments on commit 7e05163

Please sign in to comment.