From 4d51beefbae191d02de360026bd9b746451055eb Mon Sep 17 00:00:00 2001 From: LEE SEOK GYU <54509842+likppi10@users.noreply.github.com> Date: Tue, 29 Aug 2023 04:32:11 +0900 Subject: [PATCH] ci build setting (#116) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 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 --- build.gradle.kts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 6baa2156..d6aa778f 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -72,13 +72,13 @@ tasks.register("clean", type = Delete::class) { rootProject.buildDir.delete() } -tasks.register("bundleAABRelease", type = Exec::class) { - commandLine("./gradlew bundle") - workingDir = project.rootDir +tasks.register("bundleRelease", type = Exec::class) { + commandLine(project.rootDir.resolve("gradlew"), "bundle") + workingDir = project.rootDir } tasks.register("release") { dependsOn(tasks["clean"]) - dependsOn(tasks["bundleAABRelease"]) + dependsOn(tasks["bundleRelease"]) mustRunAfter(tasks["clean"]) }