Skip to content

Commit

Permalink
[FIX/#178] gentiKeyStore 검증 과정 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Marchbreeze committed Nov 30, 2024
1 parent eb559a4 commit 7a1f91d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/firebase_distribution_builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,15 @@ jobs:
env:
keystore_file: ${{ secrets.KEYSTORE_FILE }}
run: |
echo "$keystore_file" | base64 --decode > app/gentiKeystore.jks
echo "$keystore_file" | base64 --decode > app/gentiKeyStore.jks
- name: Access Keystore Properties
env:
store_password: ${{ secrets.STORE_PASSWORD }}
key_password: ${{ secrets.KEY_PASSWORD }}
key_alias: ${{ secrets.KEY_ALIAS }}
run: |
echo "storeFile=gentiKeystore.jks" > keystore.properties
echo "storeFile=gentiKeyStore.jks" > keystore.properties
echo "storePassword=\"$store_password\"" >> keystore.properties
echo "keyAlias=\"$key_alias\"" >> keystore.properties
echo "keyPassword=\"$key_password\"" >> keystore.properties
Expand All @@ -74,7 +74,7 @@ jobs:
run: |
ls -la app/
cat keystore.properties
keytool -list -keystore app/gentiKeystore.jks -storepass ${{ secrets.STORE_PASSWORD }}
keytool -list -keystore app/gentiKeyStore.jks -storepass ${{ secrets.STORE_PASSWORD }}
- name: Access Firebase Service
run: echo '${{ secrets.GOOGLE_SERVICES_JSON }}' > ./app/google-services.json
Expand Down

0 comments on commit 7a1f91d

Please sign in to comment.