Skip to content

Commit

Permalink
refactor: 환경변수 관련 CD 코드 오탈자 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
shackstack committed Aug 25, 2024
1 parent 09b316f commit 421c2ff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/frontend-prod-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ jobs:

- name: 환경변수 설정
run: |
echo "BASE_URL=$BASE_URL" >> .env.dev
echo "GOOGLE_MAP_API_KEY=$GOOGLE_MAP_API_KEY" >> .env.dev
echo "SHARE_KAKAO_LINK_KEY=$SHARE_KAKAO_LINK_KEY" >> .env.dev
echo "BASE_URL=$BASE_URL" >> .env.prod
echo "GOOGLE_MAP_API_KEY=$GOOGLE_MAP_API_KEY" >> .env.prod
echo "SHARE_KAKAO_LINK_KEY=$SHARE_KAKAO_LINK_KEY" >> .env.prod
env:
BASE_URL: ${{secrets.PROD_BASE_URL}}
GOOGLE_MAP_API_KEY: ${{secrets.GOOGLE_MAP_API_KEY}}
Expand Down

0 comments on commit 421c2ff

Please sign in to comment.