From c6007443f98ad40870a6a48580be10590edbf3f0 Mon Sep 17 00:00:00 2001 From: btwonion Date: Sun, 16 Jun 2024 22:32:04 +0200 Subject: [PATCH] fix publishing --- build.gradle.kts | 2 +- stonecutter.gradle.kts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 479c7c8..55c8768 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -15,7 +15,7 @@ plugins { } val beta: Int = 1 // Pattern is '1.0.0-beta1-1.20.6-pre.2' -val featureVersion = "1.0.0${if (beta != null) "-beta$beta" else ""}" +val featureVersion = "3.0.0${if (beta != null) "-beta$beta" else ""}" val mcVersion = property("mcVersion")!!.toString() val mcVersionRange = property("mcVersionRange")!!.toString() version = "$featureVersion-$mcVersion" diff --git a/stonecutter.gradle.kts b/stonecutter.gradle.kts index 343f09f..9cae95d 100644 --- a/stonecutter.gradle.kts +++ b/stonecutter.gradle.kts @@ -55,7 +55,7 @@ tasks.register("postUpdate") { val changelogText = rootProject.file("changelog.md").readText() val webhook = DiscordWebhook( username = "${rootProject.name} Release Notifier", - avatarUrl = "https://raw.githubusercontent.com/btwonion/skylper/master/src/main/resources/assets/skylper/icon/icon.png", + avatarUrl = "https://raw.githubusercontent.com/btwonion/telekinesis/master/src/main/resources/assets/telekinesis/icon.png", embeds = listOf( Embed( title = "v$featureVersion of ${rootProject.name} released!",