Skip to content

Commit

Permalink
🐛 fix: env 파일 생성
Browse files Browse the repository at this point in the history
  • Loading branch information
choiseoji authored Sep 13, 2024
1 parent 22a4320 commit 0c05c49
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/CICD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,15 @@ jobs:
java-version: '17'
distribution: 'temurin'

- name: Create .env file
run: |
echo "DB_USERNAME=${{ secrets.DB_USERNAME }}" >> JejuDorang/.env
echo "DB_PASSWORD=${{ secrets.DB_PASSWORD }}" >> JejuDorang/.env
echo "DB_URL=${{ secrets.DB_URL }}" >> JejuDorang/.env
echo "KAKAO_REST_API_KEY=${{ secrets.KAKAO_REST_API_KEY }}" >> JejuDorang/.env
echo "KAKAO_REDIRECT_URI=${{ secrets.KAKAO_REDIRECT_URI }}" >> JejuDorang/.env
echo "TOUR_API_KEY=${{ secrets.TOUR_API_KEY }}" >> JejuDorang/.env
- name: Grant execute permissions to Gradle Wrapper
run: chmod +x gradlew
working-directory: JejuDorang
Expand Down

0 comments on commit 0c05c49

Please sign in to comment.