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

Commit

Permalink
fix: added build fat jar step
Browse files Browse the repository at this point in the history
  • Loading branch information
AH-dark committed Dec 8, 2023
1 parent c0af4c5 commit 780e174
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ jobs:
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Run Build Fat Jar
run: |
./gradlew buildFatJar
- name: Run JReleaser Release
run: |
./gradlew jreleaserFullRelease
Expand Down
6 changes: 6 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@ application {
applicationDefaultJvmArgs = listOf("-Dio.ktor.development=$isDevelopment")
}

ktor {
fatJar {
archiveFileName = "ahdark-blog-releaser-all.jar"
}
}

jreleaser {
project {
name = "ahdark-blog-releaser"
Expand Down

0 comments on commit 780e174

Please sign in to comment.