Skip to content

Commit

Permalink
merge: 버그 수정 (#892)
Browse files Browse the repository at this point in the history
Related to: #892
  • Loading branch information
ki960213 committed Dec 29, 2023
1 parent ad20393 commit 582e7c4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/android-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,21 +28,21 @@ jobs:

- name: Access KAKAO_APP_KEY
run: |
echo KAKAO_APP_KEY=\"$KAKAO_APP_KEY\" > android/2023-emmsale/local.properties
echo KAKAO_APP_KEY=\"$KAKAO_APP_KEY\" >> android/2023-emmsale/local.properties
shell: bash
env:
KAKAO_APP_KEY: ${{ secrets.KAKAO_APP_KEY }}

- name: Access KAKAO_SCHEME
run: |
echo KAKAO_SCHEME=\"$KAKAO_SCHEME\" > android/2023-emmsale/local.properties
echo KAKAO_SCHEME=\"$KAKAO_SCHEME\" >> android/2023-emmsale/local.properties
shell: bash
env:
KAKAO_SCHEME: ${{ secrets.KAKAO_SCHEME }}

- name: Access KAKAO_HOST
run: |
echo KAKAO_HOST=\"$KAKAO_HOST\" > android/2023-emmsale/local.properties
echo KAKAO_HOST=\"$KAKAO_HOST\" >> android/2023-emmsale/local.properties
shell: bash
env:
KAKAO_HOST: ${{ secrets.KAKAO_HOST }}
Expand Down

0 comments on commit 582e7c4

Please sign in to comment.