Skip to content

Commit 6560834

Browse files
committed
fix publishing snapshots into releases & other way around
1 parent 2cbe1bb commit 6560834

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ subprojects {
5454
val snapshots = "https://maven.lavalink.dev/snapshots"
5555
val releases = "https://maven.lavalink.dev/releases"
5656

57-
maven(if ((version as String).endsWith("-SNAPSHOT")) releases else snapshots) {
57+
maven(if ((version as String).endsWith("-SNAPSHOT")) snapshots else releases) {
5858
credentials {
5959
password = findProperty("MAVEN_PASSWORD") as String?
6060
username = findProperty("MAVEN_USERNAME") as String?

0 commit comments

Comments
 (0)