Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Him188 committed May 16, 2024
1 parent 71eeaf7 commit f1f4f50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci-helper/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ val zipDesktopDistribution = tasks.register("zipDesktopDistribution", Zip::class
dependsOn(
":app:desktop:createReleaseDistributable",
)
from(project(":app:desktop").layout.buildDirectory.dir("compose/binaries/main/app"))
from(project(":app:desktop").layout.buildDirectory.dir("compose/binaries/main-release/app"))
// ani-3.0.0-beta22-dev7.zip
archiveBaseName.set("ani")
archiveVersion.set(ReleaseEnvironment().fullVersion)
Expand Down Expand Up @@ -374,7 +374,7 @@ fun ReleaseEnvironment.uploadDesktopDistributions() {
extension = kind
),
contentType = "application/octet-stream",
file = project(":app:desktop").layout.buildDirectory.dir("compose/binaries/main/$kind").get().asFile
file = project(":app:desktop").layout.buildDirectory.dir("compose/binaries/main-release/$kind").get().asFile
.walk()
.single { it.extension == kind },
)
Expand Down

0 comments on commit f1f4f50

Please sign in to comment.