From 67f0f89f602b26ed9928bb5f65ab808f624f4336 Mon Sep 17 00:00:00 2001 From: Sebastian Stehle Date: Sun, 1 Sep 2024 21:16:02 +0200 Subject: [PATCH] Fix build. --- build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index 0ed22f3..86d05fc 100644 --- a/build.gradle +++ b/build.gradle @@ -62,10 +62,10 @@ publishing { } repositories { maven { - url '$System.env.MAVEN_PUBLISH_REGISTRY_URL' + url "$System.env.MAVEN_PUBLISH_REGISTRY_URL" credentials { - username '$System.env.MAVEN_USERNAME' - password '$System.env.MAVEN_PASSWORD' + username "$System.env.MAVEN_USERNAME" + password "$System.env.MAVEN_PASSWORD" } } }