Skip to content

Commit

Permalink
dev, prod 워크 플로우 env 값 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
hyejungg committed Jan 3, 2025
1 parent 90f74ce commit e914b05
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/developDeploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ jobs:
- name: Create .env file
run: |
touch .env
echo PORT=${{ secrets.PORT }} >> .env
echo NODE_ENV=development >> .env
echo PORT=${{ secrets.DEV_PORT }} >> .env
echo DB_DEV_HOST=${{ secrets.DB_DEV_HOST }} >> .env
echo DB_DEV_USER=${{ secrets.DB_DEV_USER }} >> .env
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/productDeploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ jobs:
- name: Create .env file
run: |
touch .env
echo NODE_ENV=production >> .env
echo PORT=${{ secrets.PORT }} >> .env
echo DB_HOST=${{ secrets.DB_HOST }} >> .env
Expand Down

0 comments on commit e914b05

Please sign in to comment.