From 999c38e3b8732e462cbbf2ef0cc116b9b2d31ec9 Mon Sep 17 00:00:00 2001 From: Julia Glaszka Date: Wed, 6 Sep 2023 10:34:36 +0200 Subject: [PATCH] bugfix | change name of publication task in build.gradle.kts --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index 91e82eb5..55de5582 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -128,6 +128,6 @@ if (System.getenv("GPG_KEY_ID") != null) { System.getenv("GPG_PRIVATE_KEY"), System.getenv("GPG_PRIVATE_KEY_PASSWORD") ) - sign(tasks["publishing.publications"]) + sign(publishing.publications["sonatype"]) } }