From ad23cc9202541aa35b6bfd89a9e6c471367c0c5c Mon Sep 17 00:00:00 2001 From: InsanusMokrassar Date: Fri, 27 Jun 2025 10:03:30 +0600 Subject: [PATCH] Update github_release.gradle --- github_release.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/github_release.gradle b/github_release.gradle index 81bd74a..c3e895a 100644 --- a/github_release.gradle +++ b/github_release.gradle @@ -20,9 +20,10 @@ if (secretFile.exists() || project.hasProperty(githubTokenVariableName) || (gith apply from: './secret.gradle' } apply plugin: "com.github.breadmoirai.github-release" + def githubReleaseToken = project.hasProperty(githubTokenVariableName) ? project.property(githubTokenVariableName).toString() : githubTokenVariableFromEnv githubRelease { - token "${project.property('GITHUB_RELEASE_TOKEN')}" + token githubReleaseToken releaseAssets.from('bot/build/distributions')