Skip to content

Commit

Permalink
fix: Fix release task
Browse files Browse the repository at this point in the history
  • Loading branch information
phinner committed Jun 3, 2024
1 parent 84174dc commit 4086974
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,8 @@ tasks.shadowJar {
minimize()
}

tasks.register("release") {
tasks.register<Copy>("release") {
dependsOn(tasks.build)
project.copy {
from(tasks.shadowJar)
into(temporaryDir)
}
from(tasks.shadowJar)
into(temporaryDir)
}

0 comments on commit 4086974

Please sign in to comment.