mirror of
https://github.com/GayPizzaSpecifications/concrete.git
synced 2025-08-05 14:11:34 +00:00
Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
a06687507c
|
|||
5d4152d6df
|
|||
4c7dea2296
|
@ -7,7 +7,7 @@ plugins {
|
||||
}
|
||||
|
||||
group = "gay.pizza.foundation"
|
||||
version = "0.7.0"
|
||||
version = "0.8.0"
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
|
@ -12,6 +12,8 @@ open class ConcreteBasePlugin : Plugin<Project> {
|
||||
override fun apply(project: Project) {
|
||||
val versionWithBuild = if (System.getenv("CI_PIPELINE_IID") != null) {
|
||||
project.rootProject.version.toString() + ".${System.getenv("CI_PIPELINE_IID")}"
|
||||
} else if (System.getenv("CONCRETE_BUILD_NUMBER") != null) {
|
||||
project.rootProject.version.toString() + ".${System.getenv("CONCRETE_BUILD_NUMBER")}"
|
||||
} else {
|
||||
"DEV"
|
||||
}
|
||||
|
Reference in New Issue
Block a user