Skip to content

Commit

Permalink
chore(BE): 배포 workflow 수정 (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
eeseung committed May 23, 2024
1 parent 0a2884a commit c781c53
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/backend-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ jobs:
- name: Create .env file
run: |
touch ${{ env.ENV_PATH }}
echo PORT=${{ secrets.PORT }} >> ${{ env.ENV_PATH }}
echo DB_HOST=${{ secrets.DB_HOST }} >> ${{ env.ENV_PATH }}
echo DB_PORT=${{ secrets.DB_PORT }} >> ${{ env.ENV_PATH }}
echo DB_USERNAME=${{ secrets.DB_USERNAME }} >> ${{ env.ENV_PATH }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/backend-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ jobs:
- name: Create .env file
run: |
touch ${{ env.ENV_PATH }}
echo PORT=${{ secrets.PORT }} >> ${{ env.ENV_PATH }}
echo DB_HOST=${{ secrets.DB_HOST }} >> ${{ env.ENV_PATH }}
echo DB_PORT=${{ secrets.DB_PORT }} >> ${{ env.ENV_PATH }}
echo DB_USERNAME=${{ secrets.DB_USERNAME }} >> ${{ env.ENV_PATH }}
Expand Down

0 comments on commit c781c53

Please sign in to comment.