Skip to content

Commit

Permalink
[FIX/#178] println 조정
Browse files Browse the repository at this point in the history
  • Loading branch information
Marchbreeze committed Nov 30, 2024
1 parent 5175fa4 commit a44e49a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/firebase_distribution_builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
4 changes: 0 additions & 4 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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}")
}
Expand Down

0 comments on commit a44e49a

Please sign in to comment.