Skip to content

Commit

Permalink
[PC-105] CI/CD에 KakaoAppKey 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
tgyuuAn committed Dec 26, 2024
1 parent b3ae9ea commit d65316b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/android_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ jobs:
restore-keys: |
${{ runner.os }}-gradle-
- name: Set up local.properties
run: |
echo "KAKAO_APP_KEY=${{ secrets.KAKAO_APP_KEY }}" >> local.properties
- name: Build with Gradle
run: ./gradlew assembleDebug --build-cache --stacktrace

Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/android_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ jobs:
- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Set up local.properties
run: |
echo "KAKAO_APP_KEY=${{ secrets.KAKAO_APP_KEY }}" >> local.properties
- name: Build with Gradle
run: ./gradlew assembleDebug --build-cache --stacktrace

Expand Down

0 comments on commit d65316b

Please sign in to comment.