v0.3.2
- 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