Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
byungtak-lee committed Sep 23, 2024
1 parent dcb3f3f commit 2fa7b9b
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,16 @@ jobs:
run: |
echo DEV_BASE_URL=\"DEV_BASE_URL\" > local.properties
echo PROD_BASE_URL=\"PROD_BASE_URL\" >> local.properties
echo key_alias=\"key_alias\" >> local.properties
echo key_password=\"key_password\" >> local.properties
echo store_password=\"store_password\" >> local.properties
shell: bash
env:
DEV_BASE_URL: ${{ secrets.DEV_BASE_URL }}
PROD_BASE_URL: ${ secrets.PROD_BASE_URL }}
PROD_BASE_URL: ${{ secrets.PROD_BASE_URL }}
key_alias: ${{ secrets.ALIAS }}
key_password: ${{ secrets.KEY_PASSWORD }}
store_password: ${{ secrets.KEY_STORE_PASSWORD }}

- name: Load Google Service file
run: echo $DATA | base64 -di > app/google-services.json
Expand Down Expand Up @@ -77,7 +83,7 @@ jobs:
name: debug
path: ./app/build/outputs/apk/debug/app-debug.apk

- name : Signing Release APK
- name: Signing Release APK
uses: r0adkll/sign-android-release@v1
# ID used to access action output
id: sign_app
Expand Down

0 comments on commit 2fa7b9b

Please sign in to comment.