Skip to content

Commit

Permalink
[DEBUG] #7 - local.properties 생성 확인 + 파일 경로 이동
Browse files Browse the repository at this point in the history
  • Loading branch information
jung0115 committed Jul 8, 2024
1 parent e460578 commit 74f4453
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/android_ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,18 +28,23 @@ jobs:
# 환경변수(GOOGLE_SERVICES_JSON) 값의 내용을 기반으로 `app/google-services.json` 생성
- name: Create google-services.json
run: echo "${{ secrets.GOOGLE_SERVICES_JSON }}" > app/google-services.json

# 캐시 정리
- name: Clean Gradle cache
run: ./gradlew clean

# (LOCAL_PROPERTIES_CONTENTS)를 기반으로 local.properties 생성
- name: Create local.properties
run: echo "api.baseurl=${{ secrets.API_BASE_URL }}" >> local.properties
run: |
echo "api.baseurl=${{ secrets.API_BASE_URL }}" >> local.properties
cat local.properties
- name: local.properties 디렉토리 확인 (디버깅용)
run: ls -a

- name: Move local.properties to root directory
run: mv local.properties $GITHUB_WORKSPACE

# 캐시 정리
- name: Clean Gradle cache
run: ./gradlew clean

# Generate Keystore File
# - name: Generate Keystore File
# env:
Expand Down

0 comments on commit 74f4453

Please sign in to comment.