Skip to content

How to read frontend Build number

Constantine Rafikov edited this page Feb 16, 2023 · 1 revision

The build number is a string that is being generated while CI build step and consists of ${{ github.run_id }}.${{ github.run_number }}. To check if a reported bug is still present, you can refer to the build number of the frontend app. To find the build number, scroll to the bottom of the website on the desktop version to see the footer.

The first part of a build number is a GitHub run ID Screen Shot 2023-02-16 at 1 00 05 AM

it corresponds to GitHub Actions run identifier Screen Shot 2023-02-16 at 1 00 22 AM

The number following the dot is a GitHub Actions run number, which is incremented with each new run. It just indicates the number of runs that have taken place. It is needed to see how old is your app build without reference to GitHub Actions section which is not available for everyone.

Clone this wiki locally