Skip to content

Commit

Permalink
[fix] yaml 파일 수정
Browse files Browse the repository at this point in the history
- build.gradle에 정해준 경로 및 파일명과 yaml 상에서 디코딩 후 생성하는 키스토어 이름 맞춰주기
  • Loading branch information
unam98 committed Jun 19, 2024
1 parent d50b05b commit a903f97
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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']
}
}
Expand Down

0 comments on commit a903f97

Please sign in to comment.