Skip to content
This repository has been archived by the owner on Dec 14, 2023. It is now read-only.

Commit

Permalink
ci: fixed configuration error
Browse files Browse the repository at this point in the history
  • Loading branch information
AH-dark committed Dec 7, 2023
1 parent 6235b66 commit 295f75c
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,26 @@ jreleaser {

java {
version = "21"
artifactId = "ahdark-blog-releaser"
mainClass = "com.ahdark.code.ApplicationKt"
}
}

release {
github {
repoOwner = "ahdark"
overwrite = true
issues {
enabled = true
}

changelog {
formatted = Active.ALWAYS
preset = "conventional-commits"
contributors {
format = "- {{contributorName}}{{#contributorUsernameAsLink}} ({{.}}){{/contributorUsernameAsLink}}"
}
}
}
}

Expand Down Expand Up @@ -79,14 +92,14 @@ jreleaser {

artifacts {
artifact {
path = File("build/distributions/{{distributionName}}-v{{projectVersion}}.zip")
path = File("build/distributions/{{distributionName}}-{{projectVersion}}.zip")
}
artifact {
path = File("build/distributions/{{distributionName}}-v{{projectVersion}}-mac.zip")
path = File("build/distributions/{{distributionName}}-{{projectVersion}}-mac.zip")
platform = "osx"
}
artifact {
path = File("build/distributions/{{distributionName}}-v{{projectVersion}}-windows.zip")
path = File("build/distributions/{{distributionName}}-{{projectVersion}}-windows.zip")
platform = "windows"
}
}
Expand Down

0 comments on commit 295f75c

Please sign in to comment.