Skip to content

Commit

Permalink
Don't run unnecessary tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
crschnick committed Oct 18, 2024
1 parent 4f3e7d2 commit 5e88e84
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
4 changes: 4 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -165,3 +165,7 @@ distTar {
distZip {
enabled = false;
}

assembleDist {
enabled = false;
}
13 changes: 13 additions & 0 deletions dist/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -111,3 +111,16 @@ if (rootProject.fullVersion) {
sign(checksums)
}
}

distTar {
enabled = false;
}

distZip {
enabled = false;
}

assembleDist {
enabled = false;
dependsOn.clear()
}

0 comments on commit 5e88e84

Please sign in to comment.