Skip to content

Commit

Permalink
rollback
Browse files Browse the repository at this point in the history
  • Loading branch information
fishinitself committed May 30, 2024
1 parent d6f0ca9 commit 331dc94
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,12 @@ allprojects {
group = 'org.octopusden.octopus-release-management.ft'
version = rootProject.version
rootProject.buildscript.repositories.each {
repositories.add(it)
repositories.add(it)
}
project.tasks.findAll().forEach { task ->
if (task.name.contains("publishMavenJavaPublicationToMavenRepository")) {
task.enabled = false
}
}
}

Expand Down

0 comments on commit 331dc94

Please sign in to comment.