You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixes bug with the firebase_app_distribution_login action (see #269 for more details).
Fixes bug where we were incorrectly removing spaces from groups (see #266 for more details). Now we only trim leading and trailing spaces from the groups passed in via the groups parameter.
Adds firebase_app_distribution_get_latest_release action (#25). This will fetch info about your app's latest release in App Distribution, including the version and release notes (more info in the docs for our new REST API). You can use this action to increment the build number, for example:
lane :bump_version do
latest_release = firebase_app_distribution_get_latest_release(
app: "<your Firebase app ID>"
)
increment_build_number({ build_number: latest_release[:buildVersion].to_i + 1 })
end