Skip to content

Commit

Permalink
Create release plugin
Browse files Browse the repository at this point in the history
Fixes #28
  • Loading branch information
philipp94831 committed Mar 1, 2024
1 parent a8c8f5a commit 68dd39c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class ReleasePlugin : Plugin<Project> {
with(rootProject) {
apply(plugin = "net.researchgate.release")

val disablePushToRemote: String? = project.property("disablePushToRemote") as? String
val disablePushToRemote: String? = project.findProperty("disablePushToRemote") as? String
disablePushToRemote?.takeIf { it.toBoolean() }.apply {
configure<ReleaseExtension> {
git {
Expand Down

0 comments on commit 68dd39c

Please sign in to comment.