Skip to content

Commit

Permalink
Fix bug with printing status
Browse files Browse the repository at this point in the history
  • Loading branch information
skyestudiosDev committed Apr 25, 2024
1 parent 182acfc commit b3868e2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@ plugins {
alias(libs.plugins.jetbrainsCompose) apply false
alias(libs.plugins.kotlinMultiplatform) apply false
alias(libs.plugins.kotlinAndroid) apply false
alias(libs.plugins.publish) apply false
}
4 changes: 3 additions & 1 deletion library/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import com.vanniktech.maven.publish.SonatypeHost

//import com.vanniktech.maven.publish.SonatypeHost

plugins {
Expand Down Expand Up @@ -50,7 +52,7 @@ android {
}
@Suppress("UnstableApiUsage")
mavenPublishing {
//publishToMavenCentral(SonatypeHost.S01, true)
publishToMavenCentral(SonatypeHost.S01, true)
val versionTxt = "0.0.2"
val isDev = findProperty("env")?.equals("dev") ?: false
val version = if (isDev) "0.0.1-SNAPSHOT" else versionTxt
Expand Down

0 comments on commit b3868e2

Please sign in to comment.