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) {