From d577a160de32023e6bafed06ca68d731eef8e74a Mon Sep 17 00:00:00 2001 From: flash159483 Date: Tue, 20 Aug 2024 01:30:54 +0900 Subject: [PATCH] =?UTF-8?q?[FEAT]#108:=20keystore=20github=EC=97=90=20?= =?UTF-8?q?=EC=98=AC=EB=A0=A4=EC=9A=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/opened-pr-notification.yml | 6 +++--- .../com/bff/wespot/plugin/AndroidApplicationPlugin.kt | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/opened-pr-notification.yml b/.github/workflows/opened-pr-notification.yml index 538716b4..5d45a3f3 100644 --- a/.github/workflows/opened-pr-notification.yml +++ b/.github/workflows/opened-pr-notification.yml @@ -29,9 +29,9 @@ jobs: echo MOCK_BASE_URL=\"${{ secrets.MOCK_BASE_URL }}\" >> ./local.properties echo FACEBOOK_APP_ID=\"${{ secrets.FACEBOOK_APP_ID }}\" >> ./local.properties echo BASE_URL=\"${{ secrets.BASE_URL }}\" >> ./local.properties - echo SIGNED_STORE_PASSWORD=\"${{ secrets.SIGNED_STORE_PASSWORD }}\" >> ./local.properties - echo SIGNED_KEY_ALIAS=\"${{ secrets.SIGNED_KEY_ALIAS }}\" >> ./local.properties - echo SIGNED_KEY_PASSWORD=\"${{ secrets.SIGNED_KEY_PASSWORD }}\" >> ./local.properties + echo SIGNED_STORE_PASSWORD=${{ secrets.SIGNED_STORE_PASSWORD }} >> ./local.properties + echo SIGNED_KEY_ALIAS=${{ secrets.SIGNED_KEY_ALIAS }} >> ./local.properties + echo SIGNED_KEY_PASSWORD=${{ secrets.SIGNED_KEY_PASSWORD }} >> ./local.properties - name: add google-services.json run: | diff --git a/build-logic/convention/src/main/kotlin/com/bff/wespot/plugin/AndroidApplicationPlugin.kt b/build-logic/convention/src/main/kotlin/com/bff/wespot/plugin/AndroidApplicationPlugin.kt index 74890601..25810aa8 100644 --- a/build-logic/convention/src/main/kotlin/com/bff/wespot/plugin/AndroidApplicationPlugin.kt +++ b/build-logic/convention/src/main/kotlin/com/bff/wespot/plugin/AndroidApplicationPlugin.kt @@ -11,7 +11,7 @@ import java.io.File class AndroidApplicationPlugin : Plugin { override fun apply(target: Project) { - val file = File(target.rootDir, "local.properties") + val file = File(target.rootProject.rootDir, "local.properties") val property = loadProperties(file.absolutePath) with(target) {