Skip to content

v0.3.2

Compare
Choose a tag to compare
@lfkellogg lfkellogg released this 15 Dec 16:09
· 130 commits to master since this release
4fcb185
  • 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
  • Fixes option name in an error message (#250)
  • Updates some code examples (#255)