Skip to content

Commit

Permalink
[FIX/#178] Build 로그 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
Marchbreeze committed Nov 30, 2024
1 parent c3f9a25 commit c45737c
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/firebase_distribution_builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,21 @@ jobs:
echo "keyAlias=\"$key_alias\"" >> keystore.properties
echo "keyPassword=\"$key_password\"" >> keystore.properties
- name: Verify keystore and properties
run: |
ls -la app/
cat keystore.properties
keytool -list -keystore app/gentiKeyStore.jks -storepass ${{ secrets.STORE_PASSWORD }}
keytool -exportcert -keystore app/gentiKeyStore.jks \
-storepass ${{ secrets.STORE_PASSWORD }} \
-keypass ${{ secrets.KEY_PASSWORD }} \
-alias ${{ secrets.KEY_ALIAS }} -rfc -file /dev/null
- name: Access Firebase Service
run: echo '${{ secrets.GOOGLE_SERVICES_JSON }}' > ./app/google-services.json

- name: Build release APK
run: ./gradlew assembleRelease --stacktrace
run: ./gradlew assembleRelease --stacktrace -Pandroid.debug.obsoleteApi=true

- name: Upload to Firebase App Distribution
uses: wzieba/Firebase-Distribution-Github-Action@v1
Expand Down

0 comments on commit c45737c

Please sign in to comment.