From 24081eaced1bf6a1eb79594a21ac5ede77c96207 Mon Sep 17 00:00:00 2001 From: LEE SEOK GYU <54509842+likppi10@users.noreply.github.com> Date: Tue, 29 Aug 2023 04:22:54 +0900 Subject: [PATCH] cd build setting (#115) 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 --- build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 9b143a11..6baa2156 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -72,13 +72,13 @@ tasks.register("clean", type = Delete::class) { rootProject.buildDir.delete() } -tasks.register("bundleRelease", type = Exec::class) { +tasks.register("bundleAABRelease", type = Exec::class) { commandLine("./gradlew bundle") workingDir = project.rootDir } tasks.register("release") { dependsOn(tasks["clean"]) - dependsOn(tasks["bundleRelease"]) + dependsOn(tasks["bundleAABRelease"]) mustRunAfter(tasks["clean"]) }