From a903f97f7573239ffbed60f551524ab5d4ef7abd Mon Sep 17 00:00:00 2001 From: unam Date: Wed, 19 Jun 2024 23:48:33 +0900 Subject: [PATCH] =?UTF-8?q?[fix]=20yaml=20=ED=8C=8C=EC=9D=BC=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - build.gradle에 정해준 경로 및 파일명과 yaml 상에서 디코딩 후 생성하는 키스토어 이름 맞춰주기 --- .github/workflows/CD.yml | 2 +- app/build.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CD.yml b/.github/workflows/CD.yml index 7e9e0865..0057a17a 100644 --- a/.github/workflows/CD.yml +++ b/.github/workflows/CD.yml @@ -97,7 +97,7 @@ jobs: - name: Decode And Save Keystore Base64 run: | - echo "${{ secrets.KEYSTORE_BASE64 }}" | base64 --decode > app/keystore.jks + echo "${{ secrets.KEYSTORE_BASE64 }}" | base64 --decode > app/RunnectKeystore.jks - name: Change gradlew permissions run: chmod +x ./gradlew diff --git a/app/build.gradle b/app/build.gradle index c201667c..2588be29 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -55,7 +55,7 @@ android { keyAlias localProperties['KEY_ALIAS'] keyPassword localProperties['KEY_PASSWORD'] - storeFile file('app/RunnectKeystore.jks') + storeFile file('RunnectKeystore.jks') //app/ 경로 생략 storePassword localProperties['KEYSTORE_PASSWORD'] } }