From b4addfbd3bc79f46154fea5f2947a65f2805ee96 Mon Sep 17 00:00:00 2001 From: unam Date: Wed, 19 Jun 2024 23:37:23 +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 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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