Skip to content

Commit 4d51bee

Browse files
authored
ci build setting (#116)
* ruby 세팅 수정 (#93) * ruby 세팅 수정 (#95) * Update android-cd.yml * Update android-cd.yml * Update android-cd.yml * Update android-cd.yml * Update android-cd.yml * Update android-cd.yml * Update android-cd.yml * Update Gemfile.lock * Update android-cd.yml * Update android-cd.yml * Update android-cd.yml * Update android-cd.yml * Update android-cd.yml * Update android-cd.yml * Update android-cd.yml * Update android-cd.yml * Update build.gradle.kts * Update build.gradle.kts * Update build.gradle.kts * Update build.gradle.kts * Update build.gradle.kts * Update build.gradle.kts * Update build.gradle.kts * Update build.gradle.kts
1 parent 24081ea commit 4d51bee

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

build.gradle.kts

+4-4
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,13 @@ tasks.register("clean", type = Delete::class) {
7272
rootProject.buildDir.delete()
7373
}
7474

75-
tasks.register("bundleAABRelease", type = Exec::class) {
76-
commandLine("./gradlew bundle")
77-
workingDir = project.rootDir
75+
tasks.register("bundleRelease", type = Exec::class) {
76+
commandLine(project.rootDir.resolve("gradlew"), "bundle")
77+
workingDir = project.rootDir
7878
}
7979

8080
tasks.register("release") {
8181
dependsOn(tasks["clean"])
82-
dependsOn(tasks["bundleAABRelease"])
82+
dependsOn(tasks["bundleRelease"])
8383
mustRunAfter(tasks["clean"])
8484
}

0 commit comments

Comments
 (0)