Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a command to get latest build number from Firebase App Distribution just like TestFlight latest_testflight_build_number?

latest_testflight_build_number allows easy build number bump

example

increment_build_number({
  build_number: latest_testflight_build_number + 1
})

Is there something similar for Firebase App Distribution? For example, I've uploaded a build v1.0.0(130) While pushing a new build to Firebase App Distribution, I want to have build number as v1.0.0(131)

like image 318
Sagar Kothari Turvo Avatar asked Aug 31 '25 21:08

Sagar Kothari Turvo


1 Answers

As Alexander pointed out, it seems that a new action has been created firebase_app_distribution_get_latest_release that does the trick.

Reference at this Github issue.

like image 101
TheFabbius Avatar answered Sep 03 '25 16:09

TheFabbius