From a44e49a65ae49b92a747a16b5a7e34998a13af5e Mon Sep 17 00:00:00 2001 From: Sangho Kim Date: Sun, 1 Dec 2024 03:10:51 +0900 Subject: [PATCH] =?UTF-8?q?[FIX/#178]=20println=20=EC=A1=B0=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/firebase_distribution_builder.yml | 3 +++ app/build.gradle.kts | 4 ---- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/firebase_distribution_builder.yml b/.github/workflows/firebase_distribution_builder.yml index 0ee5ac7..f545bf7 100644 --- a/.github/workflows/firebase_distribution_builder.yml +++ b/.github/workflows/firebase_distribution_builder.yml @@ -70,6 +70,9 @@ jobs: echo "storePassword=\"$store_password\"" >> keystore.properties echo "keyAlias=\"$key_alias\"" >> keystore.properties echo "keyPassword=\"$key_password\"" >> keystore.properties + echo "STORE_PASSWORD=${{ secrets.STORE_PASSWORD }}" + echo "KEY_ALIAS=${{ secrets.KEY_ALIAS }}" + echo "KEY_PASSWORD=${{ secrets.KEY_PASSWORD }}" - name: Verify keystore and properties run: | diff --git a/app/build.gradle.kts b/app/build.gradle.kts index e456f4b..1911773 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -23,10 +23,6 @@ android { if (keystorePropertiesFile.exists()) { println("keystore.properties 파일이 존재합니다: ${keystorePropertiesFile.absolutePath}") keystoreProperties.load(keystorePropertiesFile.inputStream()) - println("keystore.properties 파일 로드 성공!") - println("storePassword: ${keystoreProperties["storePassword"]}") - println("keyAlias: ${keystoreProperties["keyAlias"]}") - println("keyPassword: ${keystoreProperties["keyPassword"]}") } else { println("keystore.properties 파일이 존재하지 않습니다: ${keystorePropertiesFile.absolutePath}") }