From eb16d745f4721945bfc4f2b3b51f8c79e074aced Mon Sep 17 00:00:00 2001 From: pm47 Date: Thu, 21 Mar 2024 16:20:22 +0100 Subject: [PATCH] use release executable for packaging --- build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 8a93109..9bf94fb 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -158,11 +158,11 @@ kotlin { archiveBaseName = "phoenix" archiveClassifier = classifier - from("$projectDir/build/bin/$dir/phoenixdDebugExecutable") { + from("$projectDir/build/bin/$dir/phoenixdReleaseExecutable") { include("*.kexe") rename("phoenixd.kexe", "phoenixd") } - from("$projectDir/build/bin/$dir/phoenix-cliDebugExecutable") { + from("$projectDir/build/bin/$dir/phoenix-cliReleaseExecutable") { include("*.kexe") rename("phoenix-cli.kexe", "phoenix-cli") }