Skip to content
This repository was archived by the owner on May 15, 2024. It is now read-only.

Commit 2b75574

Browse files
committed
config github actions build
1 parent 9e3af3e commit 2b75574

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

build.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@ buildscript {
99
}
1010
}
1111

12+
val fileVersion = file("ktorm-ksp.version").readText()
13+
1214
allprojects {
1315
group = "org.ktorm"
14-
version = "1.0"
16+
version = fileVersion
1517
}
1618

1719
subprojects {

buildSrc/src/main/kotlin/MavenPublishing.kt

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,4 @@ fun Project.configureMavenPublishing() {
9898
useInMemoryPgpKeys(keyId, secretKey, password)
9999
sign(publications["dist"])
100100
}
101-
afterEvaluate {
102-
tasks
103-
.filter { it.group == "publishing" }
104-
.forEach { it.dependsOn("check") }
105-
}
106101
}

0 commit comments

Comments
 (0)