Skip to content

Commit

Permalink
fix: Change BuildNumber generation method
Browse files Browse the repository at this point in the history
  • Loading branch information
dinushchathurya committed Jul 10, 2023
1 parent 15c7f8f commit 00947f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ allprojects {
}

ext {
buildNumber = System.getenv("BUILD_NUMBER") ?: "0"
buildNumber = System.getenv("GITHUB_RUN_NUMBER") ?: "0"
}

version = "${project.marketingVersion}-build-${project.ext.buildNumber}".toString()
Expand Down

0 comments on commit 00947f7

Please sign in to comment.