Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
PR 설명
✅ 완료한 기능 명세
📸 스크린샷
고민과 해결과정
github action .env 파일 생성방식 변경
기존 env 파일 생성 방식으로는 새로운 환경변수 값이 생길 때 마다 yml, github secret 등록을 해주어야했고,
cd 파일이 너무너무 길어지는 불편함이 있었습니다.
env 파일 생성을 간편하게 하기 위해서 env 파일을 통채로 github secret에 등록하고 한 번에 읽어와 .env 파일을 만드는 방법으로 변경했습니다.
script 가 간결해졌습니다!
로컬 환경에서 사용한 환경변수는 .env에 github secret에 넣어줄 배포환경의 환경변수는 .prod.env로 기록하며 별도로 관리하려고 합니다.