Skip to content

Commit

Permalink
ci build setting (#116)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
likppi10 committed Aug 28, 2023
1 parent 24081ea commit 4d51bee
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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"])
}

0 comments on commit 4d51bee

Please sign in to comment.