-
Notifications
You must be signed in to change notification settings - Fork 11
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
it corresponds to GitHub Actions run identifier
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.