Skip to content

Commit

Permalink
build: 환경 변수를 사용하여 application-secret.properties 파일 생성
Browse files Browse the repository at this point in the history
  • Loading branch information
cussle committed Nov 15, 2024
1 parent 8070b57 commit 57f0adf
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ jobs:
cd ./src/main/resources
touch ./application-secret.properties
echo "kakao.javascript.key=${{ secrets.KAKAO_JAVASCRIPT_KEY }}" >> ./application-secret.properties
# echo "DB_USERNAME=${{ secrets.DB_USERNAME }}" >> ./application-secret.properties
# echo "DB_PASSWORD=${{ secrets.DB_PASSWORD }}" >> ./application-secret.properties
# echo "GH_CLIENT_ID=${{ secrets.GH_CLIENT_ID }}" >> ./application-secret.properties
# echo "GH_CLIENT_SECRET=${{ secrets.GH_CLIENT_SECRET }}" >> ./application-secret.properties
# echo "GH_REDIRECT_URI=${{ secrets.GH_REDIRECT_URI }}" >> ./application-secret.properties
echo "DB_USERNAME=${{ secrets.DB_USERNAME }}" >> ./application-secret.properties
echo "DB_PASSWORD=${{ secrets.DB_PASSWORD }}" >> ./application-secret.properties
echo "GH_CLIENT_ID=${{ secrets.GH_CLIENT_ID }}" >> ./application-secret.properties
echo "GH_CLIENT_SECRET=${{ secrets.GH_CLIENT_SECRET }}" >> ./application-secret.properties
echo "GH_REDIRECT_URI=${{ secrets.GH_REDIRECT_URI }}" >> ./application-secret.properties
# 권한 부여
- name: Grant execute permission for gradlew
Expand Down

0 comments on commit 57f0adf

Please sign in to comment.