Skip to content

Commit

Permalink
�fix: android.yml 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
easyhz authored Aug 21, 2024
1 parent 27b7c65 commit a39de7a
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,16 @@ jobs:
- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Create google-services.json
run: echo "$GOOGLE_SERVICES_JSON" > app/dev/google-services.json

- name: Create google-services.json
run: echo "$GOOGLE_SERVICES_JSON" > app/prod/google-services.json
- name: Create dev directory and copy google-services.json
run: |
mkdir -p app/dev
cp ${{ secrets.GOOGLE_SERVICES_JSON }} app/dev/google-services.json
- name: Create prod directory and copy google-services.json
run: |
mkdir -p app/dev
cp ${{ secrets.GOOGLE_SERVICES_JSON }} app/prod/google-services.json
- name: Decode and create keystore.jks
run: echo $SIGNING_KEY | base64 --decode > app/keystore.jks

Expand Down

0 comments on commit a39de7a

Please sign in to comment.