Skip to content

Commit

Permalink
fix the webhook task
Browse files Browse the repository at this point in the history
  • Loading branch information
ryderbelserion committed Jul 6, 2024
1 parent b1e41ca commit 3f56d48
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ tasks {
versionName.set("${rootProject.name} ${rootProject.version}")
versionNumber.set(rootProject.version as String)

changelog.set(content)
changelog.set(content.replace("\n", ""))

uploadFile.set(rootProject.projectDir.resolve("jars/${rootProject.name}-${rootProject.version}.jar"))

Expand Down Expand Up @@ -138,7 +138,7 @@ webhook {
"Click [here](https://modrinth.com/plugin/${rootProject.name.lowercase()}/version/${libs.versions.minecraft.get()}-${System.getenv("NEXT_BUILD_NUMBER")}) to download!"
)

this.field("Commits", content)
this.field("Commits", content.replace("<br>", ""))
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import com.ryderbelserion.feather.feather

plugins {
id("com.ryderbelserion.feather-logic") version "0.0.3"
id("com.ryderbelserion.feather-logic") version "0.0.4"

`kotlin-dsl`
}
Expand All @@ -17,5 +17,5 @@ dependencies {

implementation("org.jetbrains.kotlinx", "kotlinx-coroutines-core", "1.8.1")

feather("0.0.3")
feather("0.0.4")
}
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ pluginManagement {
}

plugins {
id("com.ryderbelserion.feather-settings") version "0.0.3"
id("com.ryderbelserion.feather-settings") version "0.0.4"
}

0 comments on commit 3f56d48

Please sign in to comment.