We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 175ea4c commit 0c9e5d0Copy full SHA for 0c9e5d0
2 files changed
.github/workflows/deploy.yml
@@ -36,5 +36,6 @@ jobs:
36
draft: false
37
files: |
38
build/libs/*.jar
39
+ codebook-cli/build/libs/*.jar
40
env:
41
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
codebook-cli/build.gradle.kts
@@ -31,6 +31,10 @@ tasks.jar {
31
}
32
33
34
+tasks.named("build") {
35
+ dependsOn(tasks.named("shadowJar"))
+}
+
val os: OperatingSystem = DefaultNativePlatform.getCurrentOperatingSystem()
if (os.isLinux || os.isMacOsX) {
tasks.register("executableJar") {
0 commit comments